Skip to content

Commit f3f77dc

Browse files
committed
Changed order of arguments in a test assert for better error legibility.
- Legacy-Id: 14774
1 parent f730544 commit f3f77dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/utils/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def test_pyflakes(self):
4949
path = os.path.join(settings.BASE_DIR)
5050
warnings = []
5151
warnings = pyflakes.checkPaths([path], verbosity=0)
52-
self.assertEqual([str(w) for w in warnings], [])
52+
self.assertEqual([], [str(w) for w in warnings])
5353

5454
class TestSMTPServer(TestCase):
5555

0 commit comments

Comments
 (0)