From f3cd91270731490599e28a6da6dd7683df135bfe Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Wed, 15 Apr 2015 17:14:47 +0300 Subject: [PATCH] Fix country tests --- tests/types/test_country.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/types/test_country.py b/tests/types/test_country.py index a0387c6..4003f2c 100644 --- a/tests/types/test_country.py +++ b/tests/types/test_country.py @@ -18,7 +18,7 @@ class TestCountryType(TestCase): def test_parameter_processing(self): user = self.User( - country=Country(u'FI') + country=Country(u'fi') ) self.session.add(user) @@ -28,6 +28,6 @@ class TestCountryType(TestCase): assert user.country.name == u'Finland' def test_scalar_attributes_get_coerced_to_objects(self): - user = self.User(country='FI') + user = self.User(country='fi') assert isinstance(user.country, Country)