aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests/resources.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangorestframework/tests/resources.py')
-rw-r--r--djangorestframework/tests/resources.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/djangorestframework/tests/resources.py b/djangorestframework/tests/resources.py
index 6aa569d3..fd1226be 100644
--- a/djangorestframework/tests/resources.py
+++ b/djangorestframework/tests/resources.py
@@ -11,7 +11,7 @@ class TestObjectToData(TestCase):
def test_decimal(self):
"""Decimals need to be converted to a string representation."""
self.assertEquals(_object_to_data(decimal.Decimal('1.5')), '1.5')
-
+
def test_function(self):
"""Functions with no arguments should be called."""
def foo():