Skip to content

Commit

Permalink
Fix broken windows test (cortinico#200)
Browse files Browse the repository at this point in the history
* Fix broken windows test

* reformat
  • Loading branch information
cortinico authored Oct 30, 2023
1 parent 5f785c9 commit 2735bdd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please add your entries according to this format.

## Unreleased

## Version 0.13.0 *(2023-10-09)*
## Version 0.14.0 *(2023-10-09)*

- Add support for Gradle Worker API and Classloader Isolation (#182)
- KtFmt to 0.46
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ internal class IncludedFilesParserTest {
assertThat(includePaths).hasSize(4)

val tmp = tempDir.canonicalFile.toString()
val sep = File.separator

assertThat(includePaths.map { it.toString() })
.containsExactly("$tmp/a/b", "$tmp/c/d", "$tmp/e/f", "$tmp/g/h")
.containsExactly(
"$tmp${sep}a${sep}b",
"$tmp${sep}c${sep}d",
"$tmp${sep}e${sep}f",
"$tmp${sep}g${sep}h"
)
}
}

0 comments on commit 2735bdd

Please sign in to comment.