Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit e329a2a

Browse files
committed
fix bug in resolver test
1 parent d29ef95 commit e329a2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/org/objectionary/ddr/integration/resolver/ResolverBase.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ open class ResolverBase : IntegrationTestBase {
7575
.forEach { file ->
7676
val expected = File(file.toString()).bufferedReader().use { it.readText().replace(" ", "") }
7777
val actual = File(
78-
file.toString().replace("$eoOutTmp$sep", "out$sep")
78+
file.toString().replace("out$sep", "$eoOutTmp$sep")
7979
).bufferedReader().use { it.readText().replace(" ", "") }
8080
checkOutput(expected, actual)
8181
}

0 commit comments

Comments
 (0)