From 5a134c365f768aac76a1fd4d76be686aa48683ca Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Tue, 29 Nov 2016 01:11:47 -0800 Subject: [PATCH] minesweeper: remove number from input, add mines an input containing only "8" implies that the student solution is supposed to read a board with numbers and fill in the mines, which is contrary to all other tests (read a board with mines, fill in the numbers) --- exercises/minesweeper/canonical-data.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/minesweeper/canonical-data.json b/exercises/minesweeper/canonical-data.json index 20b94faf0c..00610da919 100644 --- a/exercises/minesweeper/canonical-data.json +++ b/exercises/minesweeper/canonical-data.json @@ -56,9 +56,9 @@ { "description": "space surrounded by mines", "input": [ - " ", - " 8 ", - " " + "***", + "* *", + "***" ], "expected": [ "***",