File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
kernel-testkit/shared/src/main/scala/cats/effect/kernel/testkit Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import scala.concurrent.duration._
2424import scala .util .{Random , Try }
2525import scala .util .control .NonFatal
2626
27- import java .util .{Base64 , Comparator , Collections }
27+ import java .util .{Base64 , Collections , Comparator }
2828import java .util .concurrent .ConcurrentSkipListSet
2929import java .util .concurrent .atomic .{AtomicLong , AtomicReference }
3030
@@ -288,10 +288,11 @@ object TestContext {
288288 val lastReportedFailure : AtomicReference [Throwable ] = new AtomicReference ()
289289 )
290290
291- private final class InternalState (
291+ private final class InternalState (
292292 val currentID : AtomicLong = new AtomicLong (),
293293 val currentNanos : AtomicLong = new AtomicLong (),
294- val tasks : java.util.SortedSet [Task ] = Collections .synchronizedSortedSet(new ConcurrentSkipListSet (Task .comparator)),
294+ val tasks : java.util.SortedSet [Task ] =
295+ Collections .synchronizedSortedSet(new ConcurrentSkipListSet (Task .comparator)),
295296 val lastReportedFailure : AtomicReference [Throwable ] = new AtomicReference ()
296297 )
297298
You can’t perform that action at this time.
0 commit comments