Browse Source

Fix too long line in test

Rafał Pitoń 7 years ago
parent
commit
bae7330b58
1 changed files with 2 additions and 1 deletions
  1. 2 1
      misago/users/tests/test_social_pipeline.py

+ 2 - 1
misago/users/tests/test_social_pipeline.py

@@ -116,7 +116,8 @@ class ValidateIpNotBannedTests(PipelineTestCase):
 
 
         Ban.objects.create(banned_value='188.*', check_type=Ban.IP)
         Ban.objects.create(banned_value='188.*', check_type=Ban.IP)
 
 
-        result = validate_ip_not_banned(MockStrategy(user_ip='188.1.2.3'), {}, GithubOAuth2, self.user)
+        result = validate_ip_not_banned(
+            MockStrategy(user_ip='188.1.2.3'), {}, GithubOAuth2, self.user)
         self.assertIsNone(result)
         self.assertIsNone(result)