Skip to content

Commit ffc24bb

Browse files
committed
fix: Reverted the unnecessary changes for Lesson14.java & EcommerceSystemTest.java
1 parent cdd1c52 commit ffc24bb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lesson_14/exceptions/exceptions_app/src/main/java/com/codedifferently/lesson14/Lesson14.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ public class Lesson14 {
55
public static void main(String[] args) {
66
System.out.println("Hello World");
77
}
8-
}
8+
}

lesson_14/exceptions/exceptions_app/src/test/java/com/codedifferently/lesson14/ecommerce/EcommerceSystemTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import static org.assertj.core.api.Assertions.assertThat;
44
import static org.assertj.core.api.Assertions.assertThatThrownBy;
5+
56
import org.junit.jupiter.api.BeforeEach;
67
import org.junit.jupiter.api.Test;
78

@@ -81,4 +82,4 @@ void testCheckOrderStatus_orderCancelled() throws Exception {
8182
.isInstanceOf(OrderNotFoundException.class)
8283
.hasMessage("Order with ID 58 not found");
8384
}
84-
}
85+
}

0 commit comments

Comments
 (0)