# HG changeset patch
# User Bob Ippolito <bob@redivi.com>
# Date 1325182332 28800
#      Thu Dec 29 10:12:12 2011 -0800
# Node ID a509af2fa4d16d7abfce4ddbe38963a94b2723f6
# Parent  f35da386633b3b7e4421c18b861f7ec949b31f3c
fix whitespace

diff --git a/simplejson/tests/test_namedtuple.py b/simplejson/tests/test_namedtuple.py
--- a/simplejson/tests/test_namedtuple.py
+++ b/simplejson/tests/test_namedtuple.py
@@ -23,17 +23,17 @@
 
 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):