From f7f8c7b3a25f004838719d317bc8e83fc3720802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Barrois?= Date: Mon, 18 Jun 2018 15:10:54 +0200 Subject: Remove hacks for old Django under Pypy. --- tests/test_django.py | 8 -------- 1 file changed, 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) -- cgit v1.2.1