Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug Fix: sbt-coveralls: Issue 199: Use relative paths in cobertura.xml file #497

Merged
merged 3 commits into from
Sep 10, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make the windows build work.
  • Loading branch information
rolandtritsch committed Sep 8, 2022
commit db085cb6b934456138315085f1324cc62fa61518
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ class CoberturaXmlWriterTest extends FunSuite {
((xml \\ "coverage" \ "packages" \ "package" \ "classes" \ "class")(
0
) \ "@filename").text,
"a.scala"
new File("a.scala").getPath()
)

assertEquals(
((xml \\ "coverage" \ "packages" \ "package" \ "classes" \ "class")(
1
) \ "@filename").text,
"a/b.scala"
new File("a", "b.scala").getPath()
)
}

Expand Down