@@ -46,19 +46,15 @@ object CodeSigSubfolderTests extends UtestIntegrationTestSuite {
4646 // Changing stuff in subfolder/package.mill does not invalidate unrelated tasks in build.mill
4747 val cached3 = eval(" foo" )
4848 assert(cached3.out == " " )
49- // This should only compile 1 source but it seems there's an upstream bug in Zinc
50- // https://github.com/sbt/zinc/issues/1461
51- assert(cached3.err.contains(" compiling 2 Scala sources" ))
49+ assert(cached3.err.contains(" compiling 1 Scala source" ))
5250
5351 modifyFile(
5452 workspacePath / " subfolder/package.mill" ,
5553 _.replace(" running helperFoo" , " running helperFoo2" )
5654 )
5755 val mangledHelperFoo = eval(" foo" )
5856 assert(mangledHelperFoo.out.linesIterator.toSeq == Seq (" running foo2" , " running helperFoo2" ))
59- // This should only compile 1 source but it seems there's an upstream bug in Zinc
60- // https://github.com/sbt/zinc/issues/1461
61- assert(mangledHelperFoo.err.contains(" compiling 2 Scala sources" ))
57+ assert(mangledHelperFoo.err.contains(" compiling 1 Scala source" ))
6258
6359 // Make sure changing `val`s, which only affects the Module constructor and
6460 // not the Task method itself, causes invalidation
@@ -68,9 +64,7 @@ object CodeSigSubfolderTests extends UtestIntegrationTestSuite {
6864 )
6965 val mangledValFoo = eval(" foo" )
7066 assert(mangledValFoo.out.linesIterator.toSeq == Seq (" running foo2" , " running helperFoo2" ))
71- // This should only compile 1 source but it seems there's an upstream bug in Zinc
72- // https://github.com/sbt/zinc/issues/1461
73- assert(mangledValFoo.err.contains(" compiling 2 Scala sources" ))
67+ assert(mangledValFoo.err.contains(" compiling 1 Scala source" ))
7468
7569 // Even modifying `val`s that do not affect the task invalidates it, because
7670 // we only know that the constructor changed and don't do enough analysis to
@@ -85,9 +79,7 @@ object CodeSigSubfolderTests extends UtestIntegrationTestSuite {
8579 " running helperFoo2"
8680 ))
8781
88- // This should only compile 1 source but it seems there's an upstream bug in Zinc
89- // https://github.com/sbt/zinc/issues/1461
90- assert(mangledValFooUsedInBar.err.contains(" compiling 2 Scala sources" ))
82+ assert(mangledValFooUsedInBar.err.contains(" compiling 1 Scala source" ))
9183
9284 val cached4 = eval(" foo" )
9385 assert(cached4.out == " " )
0 commit comments