Skip to content

Commit

Permalink
exercises(anagram): sync tests
Browse files Browse the repository at this point in the history
Reflect the upstream change [1].

[1] exercism/problem-specifications@42e59898db15
  • Loading branch information
ee7 committed Oct 7, 2023
1 parent f998a62 commit 49a0ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/practice/anagram/test_anagram.zig
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ test "detects anagrams using case-insensitive possible matches" {
test "does not detect an anagram if the original word is repeated" {
const expected = [_][]const u8{};
const word = "go";
const candidates = [_][]const u8{"go Go GO"};
const candidates = [_][]const u8{"goGoGO"};
try testAnagrams(&expected, word, &candidates);
}

Expand Down

0 comments on commit 49a0ad1

Please sign in to comment.