Skip to content

Commit

Permalink
fixed test to reflect size
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Fierro committed Apr 25, 2024
1 parent 475fe10 commit 4aae2b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/uta/cse3310/GameLogicTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ public void testGridGenerator() {
gameLogic.gridGenerator();
char[][] wordGrid = gameLogic.getWordGrid();
assertNotNull(wordGrid);
assertEquals(40, wordGrid.length);
assertEquals(40, wordGrid[0].length);
assertEquals(35, wordGrid.length);
assertEquals(35, wordGrid[0].length);
}

@Test
Expand Down

0 comments on commit 4aae2b4

Please sign in to comment.