summaryrefslogtreecommitdiff
path: root/test/junit/scala/collection/mutable
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2016-09-28 15:13:45 +0200
committerLukas Rytz <lukas.rytz@gmail.com>2016-09-30 11:06:07 +0200
commit924634899003ceca8fcf132cc09047aa2b37e933 (patch)
treeb036698ee90a854ade991c9b617f6ccc51134dda /test/junit/scala/collection/mutable
parent96fe4c334589aaf9e5de4288cd140d3d01794dc5 (diff)
downloadscala-924634899003ceca8fcf132cc09047aa2b37e933.tar.gz
scala-924634899003ceca8fcf132cc09047aa2b37e933.tar.bz2
scala-924634899003ceca8fcf132cc09047aa2b37e933.zip
re-enable two tests (starr is up to date now)
Diffstat (limited to 'test/junit/scala/collection/mutable')
-rw-r--r--test/junit/scala/collection/mutable/BitSetTest.scala2
-rw-r--r--test/junit/scala/collection/mutable/OpenHashMapTest.scala7
2 files changed, 3 insertions, 6 deletions
diff --git a/test/junit/scala/collection/mutable/BitSetTest.scala b/test/junit/scala/collection/mutable/BitSetTest.scala
index e832194989..84b906e8d5 100644
--- a/test/junit/scala/collection/mutable/BitSetTest.scala
+++ b/test/junit/scala/collection/mutable/BitSetTest.scala
@@ -1,8 +1,8 @@
package scala.collection.mutable
+import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.JUnit4
-import org.junit.{Test, Ignore}
@RunWith(classOf[JUnit4])
class BitSetTest {
diff --git a/test/junit/scala/collection/mutable/OpenHashMapTest.scala b/test/junit/scala/collection/mutable/OpenHashMapTest.scala
index 90f6be6ee5..e9f2a52bf6 100644
--- a/test/junit/scala/collection/mutable/OpenHashMapTest.scala
+++ b/test/junit/scala/collection/mutable/OpenHashMapTest.scala
@@ -1,13 +1,10 @@
package scala.collection.mutable
-import org.junit.{Ignore, Test}
import org.junit.Assert._
+import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.JUnit4
-import org.openjdk.jol.info.GraphLayout
-import org.openjdk.jol.info.GraphWalker
-import org.openjdk.jol.info.GraphVisitor
-import org.openjdk.jol.info.GraphPathRecord
+import org.openjdk.jol.info.{GraphPathRecord, GraphVisitor, GraphWalker}
/** Tests for [[OpenHashMap]]. */
@RunWith(classOf[JUnit4])