Skip to content

Commit

Permalink
formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
manas-yu committed Oct 9, 2024
1 parent a637527 commit 0a02f75
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ class ConsoleLoggerTest {
val logContent = logFile.readText()
assertThat(logContent).contains("Error before close")
assertThat(logContent).contains("Error after reopen")
assertThat(logContent.indexOf("Error before close")).isLessThan(logContent.indexOf("Error after reopen"))
assertThat(logContent.indexOf("Error before close"))
.isLessThan(logContent.indexOf("Error after reopen"))
}

private fun setUpTestApplicationComponent() {
Expand Down Expand Up @@ -176,4 +177,4 @@ class ConsoleLoggerTest {

override fun getDataProvidersInjector(): DataProvidersInjector = component
}
}
}

0 comments on commit 0a02f75

Please sign in to comment.