From: Michael Orlitzky Date: Fri, 11 Nov 2016 20:24:19 +0000 (-0500) Subject: Add two spaces to the tests to make pylint happy. X-Git-Tag: 0.1.0~36 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=6b28e89a792679e30249f5c187feefa2bdfa18a6 Add two spaces to the tests to make pylint happy. --- diff --git a/test/symmetric_linear_game_test.py b/test/symmetric_linear_game_test.py index 6327592..19be8c5 100644 --- a/test/symmetric_linear_game_test.py +++ b/test/symmetric_linear_game_test.py @@ -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):