Skip to content

Commit

Permalink
fixing tests for anagram
Browse files Browse the repository at this point in the history
  • Loading branch information
jagdish-15 committed Jan 9, 2025
1 parent 5090a74 commit 0e31cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/practice/anagram/test_anagram.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ static void test_handles_case_of_greek_letters(void)
TEST_IGNORE();
char inputs[][MAX_STR_LEN] = { "ΒΓΑ", "ΒΓΔ", "γβα", "αβγ" };

char subject[] = { "ΒΓΑ", "γβα" };
char subject[] = { "ΑΒΓ" };

candidates = build_candidates(*inputs, sizeof(inputs) / MAX_STR_LEN);
enum anagram_status expected[] = { IS_ANAGRAM, NOT_ANAGRAM, IS_ANAGRAM,
Expand Down

0 comments on commit 0e31cec

Please sign in to comment.