From dfe63a52effab2c8b5f72a6aceb8646f03d490bb Mon Sep 17 00:00:00 2001 From: Simon Meers Date: Wed, 22 Aug 2012 11:48:47 +1000 Subject: Revert "Fixed #18063 -- Avoid unicode in Model.__repr__ in python 2" This reverts commit 3fce0d2a9162cf6e749a6de0b18890dea8955e89. --- tests/regressiontests/model_regress/tests.py | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'tests') diff --git a/tests/regressiontests/model_regress/tests.py b/tests/regressiontests/model_regress/tests.py index 6a03b861e4..6a45a83052 100644 --- a/tests/regressiontests/model_regress/tests.py +++ b/tests/regressiontests/model_regress/tests.py @@ -1,5 +1,3 @@ -# coding: utf-8 - from __future__ import absolute_import, unicode_literals import datetime @@ -148,14 +146,6 @@ class ModelTests(TestCase): b = BrokenUnicodeMethod.objects.create(name="Jerry") self.assertEqual(repr(b), "") - def test_no_unicode_in_repr(self): - a = Article.objects.create( - headline="Watch for umlauts: üöä", pub_date=datetime.datetime.now()) - if six.PY3: - self.assertEqual(repr(a), '') - else: - self.assertEqual(repr(a), '') - @skipUnlessDBFeature("supports_timezones") def test_timezones(self): # Saving an updating with timezone-aware datetime Python objects. -- cgit v1.3