Skip to content

Commit

Permalink
fix bug in resolver test
Browse files Browse the repository at this point in the history
  • Loading branch information
c71n93 committed Sep 24, 2023
1 parent d29ef95 commit e329a2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ open class ResolverBase : IntegrationTestBase {
.forEach { file ->
val expected = File(file.toString()).bufferedReader().use { it.readText().replace(" ", "") }
val actual = File(
file.toString().replace("$eoOutTmp$sep", "out$sep")
file.toString().replace("out$sep", "$eoOutTmp$sep")
).bufferedReader().use { it.readText().replace(" ", "") }
checkOutput(expected, actual)
}
Expand Down

0 comments on commit e329a2a

Please sign in to comment.