Skip to content

Commit 852b3b2

Browse files
committed
Forgot to update the tests
1 parent 846dc2b commit 852b3b2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/BoggleSolver/BoggleSolverTest.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -146,20 +146,18 @@ public function testFindWords()
146146
$solverMock->boardLookup = array('A' => 1);
147147
$solverMock->size = 3;
148148

149-
$solverMock->loadBoard("X X A L L X L L X");
149+
$solverMock->loadBoard("X X A L L X L L R");
150150

151151
// X X A
152152
// L L X
153-
// L L X
153+
// L L R
154154

155155
$result = $solverMock->findWords();
156156

157157
$expected = array(
158158
'XXX' => array(
159159
array(0, 1, 5),
160-
array(1, 5, 8),
161160
array(5, 1, 0),
162-
array(8, 5, 1),
163161
),
164162
'ALL' => array(
165163
array(2, 4, 7),

0 commit comments

Comments
 (0)