Skip to content

Commit 6a7cf15

Browse files
committed
refactor: proper casing
1 parent 7859007 commit 6a7cf15

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

lesson_16/objects/objects_app/src/main/java/com/codedifferently/lesson16/ShawnDunsmore/BuyType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.codedifferently.lesson16.ShawnDunsmore;
1+
package com.codedifferently.lesson16.shawndunsmore;
22

33
public enum BuyType {
44
BONUS_BUY,

lesson_16/objects/objects_app/src/main/java/com/codedifferently/lesson16/ShawnDunsmore/InvalidPayAmountException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.codedifferently.lesson16.ShawnDunsmore;
1+
package com.codedifferently.lesson16.shawndunsmore;
22

33
public class InvalidPayAmountException extends Exception {
44

lesson_16/objects/objects_app/src/main/java/com/codedifferently/lesson16/ShawnDunsmore/SlotMachine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.codedifferently.lesson16.ShawnDunsmore;
1+
package com.codedifferently.lesson16.shawndunsmore;
22

33
import java.util.ArrayList;
44
import java.util.Collections;

lesson_16/objects/objects_app/src/test/java/com/codedifferently/lesson16/ShawnDunsmore/SlotMachineTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
package com.codedifferently.lesson16.ShawnDunsmore;
1+
package com.codedifferently.lesson16.shawndunsmore;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import static org.junit.jupiter.api.Assertions.assertThrows;
55

66
import java.util.ArrayList;
77
import java.util.Collections;
8+
89
import org.junit.jupiter.api.Test;
910

1011
public class SlotMachineTest {

0 commit comments

Comments
 (0)