Skip to content

Commit 28b0cfe

Browse files
committed
fix: assertion
1 parent 3b2ab62 commit 28b0cfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/testcontainers/demo/CustomerServiceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void shouldGetCustomers() {
6161
customerService.createCustomer(new Customer(2L, "John"));
6262

6363
List<Customer> customers = customerService.getAllCustomers();
64-
assertEquals(3, customers.size());
64+
assertEquals(2, customers.size());
6565
}
6666

6767
// Docker クライアントの情報をログに出力するユーティリティメソッド

0 commit comments

Comments
 (0)