From e524ea3db737ee92bb3ba486240dd60928781eaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Sun, 30 Oct 2016 14:30:42 +0200 Subject: [PATCH] Fix tests. --- hc/front/tests/test_add_pd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hc/front/tests/test_add_pd.py b/hc/front/tests/test_add_pd.py index 97ebddcd..d4117908 100644 --- a/hc/front/tests/test_add_pd.py +++ b/hc/front/tests/test_add_pd.py @@ -20,7 +20,7 @@ class AddPdTestCase(BaseTestCase): c = Channel.objects.get() self.assertEqual(c.kind, "pd") - self.assertEqual(c.value, "123456") + self.assertEqual(c.value, "12345678901234567890123456789012") def test_it_trims_whitespace(self): form = {"value": " 123456 "}