tracks/go/exercises/hamming/cases_test.go in trackler-2.2.1.64 vs tracks/go/exercises/hamming/cases_test.go in trackler-2.2.1.65
- old
+ new
@@ -1,10 +1,10 @@
package hamming
-// Source: exercism/x-common
-// Commit: ebe9bbf fix versioning (#845)
-// x-common version: 1.1.0
+// Source: exercism/problem-specifications
+// Commit: f79dfd7 Simplify two tests so the difference is easily spotted.
+// Problem Specifications Version: 2.0.1
var testCases = []struct {
s1 string
s2 string
want int
@@ -48,16 +48,16 @@
"ACCAGGG",
"ACTATGG",
2,
},
{ // non-unique character in first strand
- "AGA",
- "AGG",
+ "AAG",
+ "AAA",
1,
},
{ // non-unique character in second strand
- "AGG",
- "AGA",
+ "AAA",
+ "AAG",
1,
},
{ // same nucleotides in different positions
"TAG",
"GAT",