Browse Source

about to merge with sim again

Jonathan Hinds 6 years ago
parent
commit
09ca5ab200

+ 0
- 1
src/main/java/io/zipcoder/casino/SlotMachine.java View File

@@ -16,7 +16,6 @@ public class SlotMachine implements Game, Gamble {
16 16
     @Override
17 17
     public void bet(int betAmount) {
18 18
         this.betAmount= betAmount;
19
-
20 19
     }
21 20
 
22 21
     @Override

+ 2
- 2
src/test/java/io/zipcoder/casino/SlotTest.java View File

@@ -1,8 +1,8 @@
1 1
 package io.zipcoder.casino;
2 2
 
3 3
 
4
-import org.junit.jupiter.api.Test;
5
-import sun.jvm.hotspot.utilities.Assert;
4
+import org.junit.Test;
5
+import org.junit.Assert;
6 6
 
7 7
 public class SlotTest {
8 8