Skip to content

Commit

Permalink
Merge pull request #1157 from SimonMarquis/patch-1
Browse files Browse the repository at this point in the history
Swap expected/actual in `KotlinVersionOverrideTest.kt`
  • Loading branch information
Raibaz committed Sep 18, 2023
2 parents 328ebca + bbedfc7 commit 5a811c7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ class KotlinVersionOverrideTest {

@Test
fun `ensure Kotlin version is correctly handled`() = assertEquals(
actual = System.getenv("kotlin.version").orEmpty(),
expected = KotlinVersion.CURRENT.toString(),
expected = System.getenv("kotlin.version").orEmpty(),
actual = KotlinVersion.CURRENT.toString(),
)

}
}

0 comments on commit 5a811c7

Please sign in to comment.