Explorar el Código

All-your-base: update version file (2.1.0 -> 2.3.0) and update one test (#1397)

Mpatziakoudi Katerina hace 8 años
padre
commit
98b2e1af88

+ 1
- 1
exercises/all-your-base/.meta/version Ver fichero

@@ -1 +1 @@
1
-2.1.0
1
+2.3.0

+ 1
- 1
exercises/all-your-base/src/test/java/BaseConverterTest.java Ver fichero

@@ -221,7 +221,7 @@ public class BaseConverterTest {
221 221
         expectedException.expect(IllegalArgumentException.class);
222 222
         expectedException.expectMessage("Bases must be at least 2.");
223 223
 
224
-        new BaseConverter(1, new int[]{});
224
+        new BaseConverter(1, new int[]{1});
225 225
     }
226 226
 
227 227
     @Ignore("Remove to run test")