diff options
| author | Ramin Farajpour Cami <ramin.blackhat@gmail.com> | 2016-11-15 02:10:28 +0330 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-11-14 17:40:28 -0500 |
| commit | 0a63ef3f61f42c5fd22f2d0b626e386fd426ebed (patch) | |
| tree | 4529b5f5c23db4062a5195f961e4ae468120741e /tests/test_client_regress | |
| parent | c7bfcd2f377ad5803e25ee547dee9cf58ee68ab2 (diff) | |
Fixed #27463 -- Fixed E741 flake8 warnings.
Diffstat (limited to 'tests/test_client_regress')
| -rw-r--r-- | tests/test_client_regress/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_client_regress/tests.py b/tests/test_client_regress/tests.py index 7c4c8cde24..48ce51b091 100644 --- a/tests/test_client_regress/tests.py +++ b/tests/test_client_regress/tests.py @@ -956,10 +956,10 @@ class ContextTests(TestDataMixin, TestCase): c2.update({'goodbye': 'world', 'python': 'rocks'}) c2.update({'goodbye': 'dolly'}) - l = ContextList([c1, c2]) + k = ContextList([c1, c2]) # None, True and False are builtins of BaseContext, and present # in every Context without needing to be added. - self.assertEqual({'None', 'True', 'False', 'hello', 'goodbye', 'python', 'dolly'}, l.keys()) + self.assertEqual({'None', 'True', 'False', 'hello', 'goodbye', 'python', 'dolly'}, k.keys()) def test_15368(self): # Need to insert a context processor that assumes certain things about |
