Skip to content

Commit 7aabbf5

Browse files
committed
SCALA-28: move code to its own package
1 parent 037dbb7 commit 7aabbf5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scala-core/src/test/scala/com/baeldung/scala/lazyval/LazyValUnitTest.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ class LazyValUnitTest extends FunSuite {
2727
//given
2828
val futures = Future.sequence(Seq(
2929
Future {
30-
scala.LazyValStore.squareOf5
30+
LazyValStore.squareOf5
3131
},
3232
Future {
33-
scala.LazyValStore.squareOf6
33+
LazyValStore.squareOf6
3434
}))
3535

3636
//when

0 commit comments

Comments
 (0)