aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/scalatest/ScalaTest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/scalatest/ScalaTest.scala b/plugins/scalatest/ScalaTest.scala
index 7f805fd..e2f44e3 100644
--- a/plugins/scalatest/ScalaTest.scala
+++ b/plugins/scalatest/ScalaTest.scala
@@ -33,7 +33,7 @@ object ScalaTestLib{
.getMethod("discoverSuiteNames", classOf[List[_]], classOf[ClassLoader], classOf[Option[_]])
.invoke(null, List(discoveryPath.string ++ "/"), classLoader, None)
.asInstanceOf[Set[String]]
- .to
+ .toVector
}
def loadSuite(name: String, classLoader: ClassLoader) = {
classLoader.loadClass(name).getConstructor().newInstance().asInstanceOf[Suite]