Skip to content

Commit

Permalink
GP-32 Fix the StackTest
Browse files Browse the repository at this point in the history
  • Loading branch information
shryhus committed Jan 14, 2021
1 parent dd5a328 commit 7135461
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class StackTest {

@Test
@Order(1)
void pushAndPopElementOntoEmptyStack() {
intStack.push(234);
void pushElementOntoEmptyStack() {
intStack.push(243);

assertThat(intStack.pop()).isEqualTo(243);
}
Expand Down

0 comments on commit 7135461

Please sign in to comment.