Browse Source

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

Mpatziakoudi Katerina 8 years ago
parent
commit
98b2e1af88

+ 1
- 1
exercises/all-your-base/.meta/version View File

1
-2.1.0
1
+2.3.0

+ 1
- 1
exercises/all-your-base/src/test/java/BaseConverterTest.java View File

221
         expectedException.expect(IllegalArgumentException.class);
221
         expectedException.expect(IllegalArgumentException.class);
222
         expectedException.expectMessage("Bases must be at least 2.");
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
     @Ignore("Remove to run test")
227
     @Ignore("Remove to run test")