Skip to content

Commit 7be2612

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

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
@@ -142,7 +142,7 @@ public void threeCopiesOfFirstBookAndTwoEachOfRemaining() {
142142
@Disabled("Remove to run test")
143143
@Test
144144
@DisplayName("Three each of first two books and two each of remaining books")
145-
public void threeEachOFirst2BooksAnd2EachOfRemainingBooks() {
145+
public void threeEachOfFirstTwoBooksAndTwoEachOfRemainingBooks() {
146146
List<Integer> books = Arrays.asList(1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 1, 2);
147147
assertThat(bookStore.calculateBasketCost(books))
148148
.isCloseTo(75.20, Assertions.offset(EQUALITY_TOLERANCE));

0 commit comments

Comments
 (0)