From f79dfd771dc66f6fc9ff15686d6077fb162532bb Mon Sep 17 00:00:00 2001 From: Stargator Date: Sat, 14 Oct 2017 12:01:34 -0400 Subject: [PATCH] Simplify two tests so the difference is easily spotted. --- exercises/hamming/canonical-data.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/exercises/hamming/canonical-data.json b/exercises/hamming/canonical-data.json index 90fcd0a07a..de3924e51a 100644 --- a/exercises/hamming/canonical-data.json +++ b/exercises/hamming/canonical-data.json @@ -1,6 +1,6 @@ { "exercise": "hamming", -"version": "2.0.0", +"version": "2.0.1", "comments": [ "Language implementations vary on the issue of unequal length strands.", "A language may elect to simplify this task by only presenting equal", @@ -73,15 +73,15 @@ { "description": "non-unique character in first strand", "property": "distance", - "strand1": "AGA", - "strand2": "AGG", + "strand1": "AAG", + "strand2": "AAA", "expected": 1 }, { "description": "non-unique character in second strand", "property": "distance", - "strand1": "AGG", - "strand2": "AGA", + "strand1": "AAA", + "strand2": "AAG", "expected": 1 }, {