From fb1066f71649260fe402a257c6056f0f39c79bf6 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Tue, 10 Oct 2017 12:51:27 -0700 Subject: [PATCH] Fix the board size parameter in a test --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 09239ec..763fc45 100644 --- a/test.py +++ b/test.py @@ -85,5 +85,5 @@ class Sudoku4SolvedTests(Sudoku4TestCase): def test_simple_solution_is_solved(self): board = (int(i) for i in '1234341221434321') - self.board = sudoku.Sudoku(4, board) + self.board = sudoku.Sudoku(2, board) self.assertTrue(self.board.solved)