From fc0b7289394f9fa903858e7a6b37d94bd132287a Mon Sep 17 00:00:00 2001 From: Ben Patterson Date: Fri, 27 Feb 2015 17:35:44 -0500 Subject: [PATCH] Fix pep8 violation. --- openedx/core/djangoapps/user_api/accounts/tests/test_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/user_api/accounts/tests/test_views.py b/openedx/core/djangoapps/user_api/accounts/tests/test_views.py index d25dda8dda..1d58b60fe1 100644 --- a/openedx/core/djangoapps/user_api/accounts/tests/test_views.py +++ b/openedx/core/djangoapps/user_api/accounts/tests/test_views.py @@ -167,7 +167,7 @@ class TestAccountAPI(APITestCase): ), ("client", "user", "country", "GB", "XY", "Select a valid choice. XY is not one of the available choices."), ("client", "user", "year_of_birth", 2009, "not_an_int", "Enter a whole number."), - ("client", "user", "name", "bob", "z"*256, "Ensure this value has at most 255 characters (it has 256)."), + ("client", "user", "name", "bob", "z" * 256, "Ensure this value has at most 255 characters (it has 256)."), ("client", "user", "name", u"ȻħȺɍłɇs", "z ", "The name field must be at least 2 characters long."), ("client", "user", "language", "Creole"), ("client", "user", "goals", "Smell the roses"),