@@ -269,7 +269,7 @@ class IncrementalSpec extends Specification {
269
269
IO .write(file2, " x" )
270
270
271
271
var hashPrefix = " "
272
- implicit val hasher = OpInputHasher [String ](op => OpInputHash .hashString(hashPrefix + op))
272
+ implicit val hasher : OpInputHasher [ String ] = OpInputHasher [String ](op => OpInputHash .hashString(hashPrefix + op))
273
273
274
274
// Cache ops with an initial hash prefix
275
275
@@ -580,7 +580,7 @@ class IncrementalSpec extends Specification {
580
580
IO .write(file2, " x" )
581
581
582
582
var hashPrefix = " "
583
- implicit val hasher = OpInputHasher [String ](op => OpInputHash .hashString(hashPrefix + op))
583
+ implicit val hasher : OpInputHasher [ String ] = OpInputHasher [String ](op => OpInputHash .hashString(hashPrefix + op))
584
584
585
585
// Cache ops with an initial hash prefix
586
586
@@ -641,7 +641,7 @@ class IncrementalSpec extends Specification {
641
641
" op1" -> OpSuccess (Set .empty, Set (file1)),
642
642
" op2" -> OpSuccess (Set .empty, Set (file2))
643
643
),
644
- Unit
644
+ ()
645
645
)
646
646
}
647
647
val (outputFiles, _) = syncIncremental(tmpDir, List (" op1" )) { prunedOps =>
@@ -673,7 +673,7 @@ class IncrementalSpec extends Specification {
673
673
Map [String , OpResult ](
674
674
" op1" -> OpSuccess (Set (infile), Set (file1, file2))
675
675
),
676
- Unit
676
+ ()
677
677
)
678
678
}
679
679
@@ -709,7 +709,7 @@ class IncrementalSpec extends Specification {
709
709
" op1" -> OpSuccess (Set (infile), Set (file1)),
710
710
" op2" -> OpSuccess (Set .empty, Set (file2))
711
711
),
712
- Unit
712
+ ()
713
713
)
714
714
}
715
715
@@ -721,7 +721,7 @@ class IncrementalSpec extends Specification {
721
721
" op1" -> OpSuccess (Set (infile), Set .empty),
722
722
" op3" -> OpSuccess (Set .empty, Set (file1, file2))
723
723
),
724
- Unit
724
+ ()
725
725
)
726
726
}
727
727
0 commit comments