]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
Add two spaces to the tests to make pylint happy.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 11 Nov 2016 20:24:19 +0000 (15:24 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 13 Nov 2016 20:19:27 +0000 (15:19 -0500)
test/symmetric_linear_game_test.py

index 6327592b1268429e53cc54df757b275b5e894ad5..19be8c511f628a41f67baa0877ce37eaee4393ef 100644 (file)
@@ -74,7 +74,7 @@ class SymmetricLinearGameTest(TestCase): # pylint: disable=R0904
         s1 = s[0:G.dimension()]
         s2 = s[G.dimension():]
         self.assert_within_tol(norm(G.A()*x - G.b()), 0)
-        self.assertTrue((s1,s2) in G.C())
+        self.assertTrue((s1, s2) in G.C())
 
 
     def test_player1_start_valid_orthant(self):
@@ -97,7 +97,7 @@ class SymmetricLinearGameTest(TestCase): # pylint: disable=R0904
         z = G.player2_start()['z']
         z1 = z[0:G.dimension()]
         z2 = z[G.dimension():]
-        self.assertTrue((z1,z2) in G.C())
+        self.assertTrue((z1, z2) in G.C())
 
 
     def test_player2_start_valid_orthant(self):