tracks/haskell/exercises/hamming/test/Tests.hs in trackler-2.2.1.59 vs tracks/haskell/exercises/hamming/test/Tests.hs in trackler-2.2.1.60

- old
+ new

@@ -65,16 +65,16 @@ , strand1 = "ACCAGGG" , strand2 = "ACTATGG" , expected = Just 2 } , Case { description = "non-unique character in first strand" - , strand1 = "AGA" - , strand2 = "AGG" + , strand1 = "AAG" + , strand2 = "AAA" , expected = Just 1 } , Case { description = "non-unique character in second strand" - , strand1 = "AGG" - , strand2 = "AGA" + , strand1 = "AAA" + , strand2 = "AAG" , expected = Just 1 } , Case { description = "same nucleotides in different positions" , strand1 = "TAG" , strand2 = "GAT"