Skip to content

Commit 92c45f8

Browse files
Update exercises/practice/book-store/src/test/java/BookStoreTest.java
Co-authored-by: Jagdish Prajapati <[email protected]>
1 parent 831a50f commit 92c45f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/practice/book-store/src/test/java/BookStoreTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public void twoCopiesOfEachBook() {
133133
@Disabled("Remove to run test")
134134
@Test
135135
@DisplayName("Three copies of first book and two each of remaining")
136-
public void threeCopiesOfFirstBookAnd2EachOfRemaining() {
136+
public void threeCopiesOfFirstBookAndTwoEachOfRemaining() {
137137
List<Integer> books = Arrays.asList(1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 1);
138138
assertThat(bookStore.calculateBasketCost(books))
139139
.isCloseTo(68.00, Assertions.offset(EQUALITY_TOLERANCE));

0 commit comments

Comments
 (0)