Removed binary input test line

That line was inconveniently introduced by the committer (me) in
3b966c2b73. Sorry!
This commit is contained in:
Claude Paroz 2015-02-27 15:44:06 +01:00
parent 3b966c2b73
commit 8a9f39d2b3
1 changed files with 0 additions and 1 deletions

View File

@ -251,7 +251,6 @@ class FieldsTests(SimpleTestCase):
f = IntegerField()
self.assertEqual(1, f.clean(1.0))
self.assertEqual(1, f.clean('1.0'))
self.assertEqual(1, f.clean(b'1.0'))
self.assertEqual(1, f.clean(' 1.0 '))
self.assertEqual(1, f.clean('1.'))
self.assertEqual(1, f.clean(' 1. '))