From 6b28e89a792679e30249f5c187feefa2bdfa18a6 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 11 Nov 2016 15:24:19 -0500 Subject: [PATCH] Add two spaces to the tests to make pylint happy. --- test/symmetric_linear_game_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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): -- 2.43.2