summaryrefslogtreecommitdiff
path: root/simplejson/tests/test_namedtuple.py
diff options
context:
space:
mode:
Diffstat (limited to 'simplejson/tests/test_namedtuple.py')
-rw-r--r--simplejson/tests/test_namedtuple.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/simplejson/tests/test_namedtuple.py b/simplejson/tests/test_namedtuple.py
index f4cdbe6..f04d96f 100644
--- a/simplejson/tests/test_namedtuple.py
+++ b/simplejson/tests/test_namedtuple.py
@@ -23,17 +23,17 @@ else:
class DuckValue(object):
def __init__(self, *args):
- self.value = Value(*args)
+ self.value = Value(*args)
def _asdict(self):
- return self.value._asdict()
+ return self.value._asdict()
class DuckPoint(object):
def __init__(self, *args):
- self.point = Point(*args)
+ self.point = Point(*args)
def _asdict(self):
- return self.point._asdict()
+ return self.point._asdict()
class TestNamedTuple(unittest.TestCase):
def test_namedtuple_dumps(self):