summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polyconseil.fr>2018-06-18 15:10:54 +0200
committerRaphaël Barrois <raphael.barrois@polyconseil.fr>2018-06-18 15:10:54 +0200
commitf7f8c7b3a25f004838719d317bc8e83fc3720802 (patch)
tree86b31a0c926a98162514adbbca7aafbcc2bef00b
parente677698e8330bc3374054a6669df694a85ea54e6 (diff)
downloadsemantic-version-f7f8c7b3a25f004838719d317bc8e83fc3720802.tar.gz
Remove hacks for old Django under Pypy.
-rw-r--r--tests/test_django.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_django.py b/tests/test_django.py
index 273633c..d9afd8f 100644
--- a/tests/test_django.py
+++ b/tests/test_django.py
@@ -214,19 +214,11 @@ class FieldMigrationTests(DjangoTestCase):
'partial': True,
'max_length': 200,
}
- if hasattr(sys, 'pypy_version_info'):
- # Django under Pypy adds this extra key.
- expected['help_text'] = u''
-
self.assertEqual(field.deconstruct()[3], expected)
def test_spec_field(self):
field = django_fields.SpecField()
expected = {'max_length': 200}
- if hasattr(sys, 'pypy_version_info'):
- # Django under Pypy adds this extra key.
- expected['help_text'] = u''
-
self.assertEqual(field.deconstruct()[3], expected)