diff --git a/simplejson/tests/test_namedtuple.py b/simplejson/tests/test_namedtuple.py index f35da386633b3b7e4421c18b861f7ec949b31f3c_c2ltcGxlanNvbi90ZXN0cy90ZXN0X25hbWVkdHVwbGUucHk=..a509af2fa4d16d7abfce4ddbe38963a94b2723f6_c2ltcGxlanNvbi90ZXN0cy90ZXN0X25hbWVkdHVwbGUucHk= 100644 --- a/simplejson/tests/test_namedtuple.py +++ b/simplejson/tests/test_namedtuple.py @@ -23,6 +23,6 @@ class DuckValue(object): def __init__(self, *args): - self.value = Value(*args) + self.value = Value(*args) def _asdict(self): @@ -27,6 +27,6 @@ def _asdict(self): - return self.value._asdict() + return self.value._asdict() class DuckPoint(object): def __init__(self, *args): @@ -30,6 +30,6 @@ class DuckPoint(object): def __init__(self, *args): - self.point = Point(*args) + self.point = Point(*args) def _asdict(self): @@ -34,6 +34,6 @@ def _asdict(self): - return self.point._asdict() + return self.point._asdict() class TestNamedTuple(unittest.TestCase): def test_namedtuple_dumps(self):