Skip to content

Commit

Permalink
Tests: fixed Windows paths issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Oct 12, 2024
1 parent 42ca648 commit b9b6699
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ class IntelliJPluginVerifierPathResolverTest : IntelliJPluginTestBase() {
prepareTest("layout.file(provider { file(\"/missingFile\") })")

buildAndFail(randomTaskName) {
assertContains("> IntelliJ Plugin Verifier not found at: /missingFile", output)
assertContains("> IntelliJ Plugin Verifier not found at:", output)
assertContains("missingFile", output)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ class MarketplaceZipSignerPathResolverTest : IntelliJPluginTestBase() {
prepareTest("layout.file(provider { file(\"/missingFile\") })")

buildAndFail(randomTaskName) {
assertContains("> Marketplace ZIP Signer not found at: /missingFile", output)
assertContains("> Marketplace ZIP Signer not found at:", output)
assertContains("missingFile", output)
}
}

Expand Down

0 comments on commit b9b6699

Please sign in to comment.