diff --git a/exercises/nucleotide-count/Tests.elm b/exercises/nucleotide-count/Tests.elm index 8438fd5..0800470 100644 --- a/exercises/nucleotide-count/Tests.elm +++ b/exercises/nucleotide-count/Tests.elm @@ -16,7 +16,7 @@ tests = \() -> Expect.equal { a = 0, t = 0, c = 0, g = 0 } (nucleotideCounts "") - , test "repetitive-sequence-has-only-guanosine" <| + , test "repetitive sequence has only guanine" <| \() -> Expect.equal { a = 0, t = 0, c = 0, g = 8 } (nucleotideCounts "GGGGGGGG")