Skip to content

Commit caa56c9

Browse files
committed
Kotlin: compiler_arguments test: Normalise path separators in output
Otherwise we get different output on Windows vs Posix.
1 parent 2783668 commit caa56c9

File tree

1 file changed

+1
-1
lines changed
  • java/ql/integration-tests/all-platforms/kotlin/compiler_arguments

1 file changed

+1
-1
lines changed

java/ql/integration-tests/all-platforms/kotlin/compiler_arguments/compArgs.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ private string getArgument(Compilation c, int i) {
1212
}
1313

1414
from Compilation c, int i
15-
select i, getArgument(c, i)
15+
select i, getArgument(c, i).replaceAll("\\", "/")

0 commit comments

Comments
 (0)