diff options
author | Andi Albrecht <albrecht.andi@gmail.com> | 2010-12-09 05:55:12 +0100 |
---|---|---|
committer | Andi Albrecht <albrecht.andi@gmail.com> | 2010-12-09 05:55:12 +0100 |
commit | a7927edaef71f560d88205989655288fd8b3d23c (patch) | |
tree | dc21a7d8a57083456a6f1b0b25a392cf2a8fc6e2 /tests/utils.py | |
parent | 6d95a5080e2c51bc759456f9a78991a81a272fe2 (diff) | |
download | sqlparse-a7927edaef71f560d88205989655288fd8b3d23c.tar.gz |
Fix a Py3K regression.
Diffstat (limited to 'tests/utils.py')
-rw-r--r-- | tests/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py index a78b460..6135dc3 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -28,7 +28,7 @@ class TestCaseBase(unittest.TestCase): # Adopted from Python's tests. def ndiffAssertEqual(self, first, second): """Like failUnlessEqual except use ndiff for readable output.""" - if first <> second: + if first != second: sfirst = unicode(first) ssecond = unicode(second) diff = difflib.ndiff(sfirst.splitlines(), ssecond.splitlines()) |