Skip to content

Commit

Permalink
Forgot to update the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mwatson committed Jul 28, 2015
1 parent 846dc2b commit 852b3b2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/BoggleSolver/BoggleSolverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,20 +146,18 @@ public function testFindWords()
$solverMock->boardLookup = array('A' => 1);
$solverMock->size = 3;

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

// X X A
// L L X
// L L X
// L L R

$result = $solverMock->findWords();

$expected = array(
'XXX' => array(
array(0, 1, 5),
array(1, 5, 8),
array(5, 1, 0),
array(8, 5, 1),
),
'ALL' => array(
array(2, 4, 7),
Expand Down

0 comments on commit 852b3b2

Please sign in to comment.