Skip to content

Commit

Permalink
fixed test to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
antmorales1 committed Apr 21, 2024
1 parent a50b098 commit cb789d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/uta/cse3310/WordListTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void testGetWordList() {
WordList wordList = new WordList();
String testFile = "src/test/java/uta/cse3310/testWords.txt";

List<String> expectedWords = Arrays.asList("This", "a", "file");
List<String> expectedWords = Arrays.asList("This", "is", "a", "test", "file");

List<String> actualWords = wordList.getWordList(testFile);

Expand Down

0 comments on commit cb789d3

Please sign in to comment.