summaryrefslogtreecommitdiff
path: root/subvertpy/tests/test_marshall.py
diff options
context:
space:
mode:
Diffstat (limited to 'subvertpy/tests/test_marshall.py')
-rw-r--r--subvertpy/tests/test_marshall.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/subvertpy/tests/test_marshall.py b/subvertpy/tests/test_marshall.py
index 751276f2..47d659dc 100644
--- a/subvertpy/tests/test_marshall.py
+++ b/subvertpy/tests/test_marshall.py
@@ -28,20 +28,20 @@ from subvertpy.tests import TestCase
class TestMarshalling(TestCase):
def test_literal_txt(self):
- l = literal("foo")
- self.assertEqual("foo", l.txt)
+ line = literal("foo")
+ self.assertEqual("foo", line.txt)
def test_literal_str(self):
- l = literal("foo bar")
- self.assertEqual("foo bar", l.__str__())
+ line = literal("foo bar")
+ self.assertEqual("foo bar", line.__str__())
def test_literal_rep(self):
- l = literal("foo bar")
- self.assertEqual("foo bar", l.__repr__())
+ line = literal("foo bar")
+ self.assertEqual("foo bar", line.__repr__())
def test_marshall_error(self):
- e = MarshallError("bla bla")
- self.assertEqual("bla bla", e.__str__())
+ err = MarshallError("bla bla")
+ self.assertEqual("bla bla", err.__str__())
def test_marshall_int(self):
self.assertEqual(b"1 ", marshall(1))