From bc852df9d9496b880fbd23efae3e34b955aed722 Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 8 Dec 2016 01:40:05 +0800 Subject: [PATCH] Fix incorrect expected values for all-your-base. --- exercises/all-your-base/canonical-data.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/all-your-base/canonical-data.json b/exercises/all-your-base/canonical-data.json index 8c503f9b39..59224a83b3 100644 --- a/exercises/all-your-base/canonical-data.json +++ b/exercises/all-your-base/canonical-data.json @@ -77,19 +77,19 @@ , "input_base" : 10 , "input_digits" : [0] , "output_base" : 2 - , "expected" : null + , "expected" : [0] }, { "description" : "multiple zeros" , "input_base" : 10 , "input_digits" : [0, 0, 0] , "output_base" : 2 - , "expected" : null + , "expected" : [0] }, { "description" : "leading zeros" , "input_base" : 7 , "input_digits" : [0, 6, 0] , "output_base" : 10 - , "expected" : null + , "expected" : [4, 2] }, { "description" : "negative digit" , "input_base" : 2