@@ -297,35 +297,35 @@ private void assertAllReportFilesExist() {
297
297
298
298
private void assertAggregationFilesExist () {
299
299
300
- Assert .assertTrue (resolve (reportDir (), "a/src/main/scala/ org/hello/a/WorldA.scala.html" ).exists ());
301
- Assert .assertTrue (resolve (reportDir (), "b/src/main/scala/ org/hello/b/WorldB.scala.html" ).exists ());
302
- Assert .assertTrue (resolve (reportDir (), "common/src/main/scala/ org/hello/common/WorldCommon.scala.html" ).exists ());
300
+ Assert .assertTrue (resolve (reportDir (), "org/hello/a/WorldA.scala.html" ).exists ());
301
+ Assert .assertTrue (resolve (reportDir (), "org/hello/b/WorldB.scala.html" ).exists ());
302
+ Assert .assertTrue (resolve (reportDir (), "org/hello/common/WorldCommon.scala.html" ).exists ());
303
303
}
304
304
305
305
private void assertRootReportFilesExist () {
306
306
307
307
Assert .assertTrue (resolve (reportDir (), "index.html" ).exists ());
308
- Assert .assertTrue (resolve (reportDir (), "src/main/scala/ org/hello/World.scala.html" ).exists ());
308
+ Assert .assertTrue (resolve (reportDir (), "org/hello/World.scala.html" ).exists ());
309
309
}
310
310
311
311
private void assertAReportFilesExist () {
312
312
313
313
File reportDir = reportDir (projectDir ().toPath ().resolve ("a" ).toFile ());
314
314
Assert .assertTrue (resolve (reportDir , "index.html" ).exists ());
315
- Assert .assertTrue (resolve (reportDir , "src/main/scala/ org/hello/a/WorldA.scala.html" ).exists ());
315
+ Assert .assertTrue (resolve (reportDir , "org/hello/a/WorldA.scala.html" ).exists ());
316
316
}
317
317
318
318
private void assertBReportFilesExist () {
319
319
320
320
File reportDir = reportDir (projectDir ().toPath ().resolve ("b" ).toFile ());
321
321
Assert .assertTrue (resolve (reportDir , "index.html" ).exists ());
322
- Assert .assertTrue (resolve (reportDir , "src/main/scala/ org/hello/b/WorldB.scala.html" ).exists ());
322
+ Assert .assertTrue (resolve (reportDir , "org/hello/b/WorldB.scala.html" ).exists ());
323
323
}
324
324
325
325
private void assertCommonReportFilesExist () {
326
326
327
327
File reportDir = reportDir (projectDir ().toPath ().resolve ("common" ).toFile ());
328
328
Assert .assertTrue (resolve (reportDir , "index.html" ).exists ());
329
- Assert .assertTrue (resolve (reportDir , "src/main/scala/ org/hello/common/WorldCommon.scala.html" ).exists ());
329
+ Assert .assertTrue (resolve (reportDir , "org/hello/common/WorldCommon.scala.html" ).exists ());
330
330
}
331
331
}
0 commit comments