From 136398fea6cff809459400dcaa6f2146ac5a1568 Mon Sep 17 00:00:00 2001 From: Alexander Bronca Date: Fri, 31 Mar 2017 19:28:49 -0400 Subject: [PATCH] Fix test title No need for hypens, and guanosine is not the same as guanine. --- exercises/nucleotide-count/Tests.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")