diff options
Diffstat (limited to 'test/test_phystokens.py')
-rw-r--r-- | test/test_phystokens.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_phystokens.py b/test/test_phystokens.py index fb0b5535..a01cc374 100644 --- a/test/test_phystokens.py +++ b/test/test_phystokens.py @@ -38,7 +38,7 @@ class PhysTokensTest(CoverageTest): # before comparing. source = re.sub("(?m)[ \t]+$", "", source) tokenized = re.sub("(?m)[ \t]+$", "", tokenized) - self.assert_multiline_equal(source, tokenized) + self.assertMultiLineEqual(source, tokenized) def check_file_tokenization(self, fname): """Use the contents of `fname` for `check_tokenization`.""" |