Ver código fonte

fixing error in test

L. Dolio Durant 6 anos atrás
pai
commit
4808251aeb

+ 1
- 1
src/test/java/com/zipcodewilmington/danny_do_better_exercises/TestMathUtilities.java Ver arquivo

@@ -295,7 +295,7 @@ public class TestMathUtilities {
295 295
     public void testMultiplication3() {
296 296
         // : Given
297 297
         byte multiplicand = 16;
298
-        byte multiplier = 14;
298
+        byte multiplier = 4;
299 299
         byte expectedByte = 64;
300 300
         // : When
301 301
         byte actualByte = primativeTypes.multiply(multiplicand, multiplier);