Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Adamczyk committed Nov 18, 2020
1 parent d9565f7 commit 40e7c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_runner/src/test/kotlin/ftl/util/ProgressBarTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class ProgressBarTest {
)

// then
assertThat(systemOutRule.log).contains(" TEST .")
assertThat(systemOutRule.log).contains(" TEST ")
verify { action.run() }
verify(exactly = 0) { onError.run() }
}
Expand All @@ -71,7 +71,7 @@ class ProgressBarTest {
)

// then
assertThat(systemOutRule.log).contains(" TEST .")
assertThat(systemOutRule.log).contains(" TEST ")
verify { action.run() }
verify { onError.run() }
}
Expand Down

0 comments on commit 40e7c6f

Please sign in to comment.