summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rwxr-xr-xcore/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala b/core/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala
index 6e4faba..9e4b4a9 100755
--- a/core/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala
+++ b/core/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala
@@ -1,9 +1,9 @@
package com.rockymadden.stringmetric
-import org.scalatest.{ BeforeAndAfter, WordSpec }
+import org.scalatest.{ BeforeAndAfter, ParallelTestExecution, WordSpec }
import org.scalatest.matchers.ShouldMatchers
-trait ScalaTest extends WordSpec with ShouldMatchers with BeforeAndAfter {
+trait ScalaTest extends WordSpec with ShouldMatchers with BeforeAndAfter with ParallelTestExecution {
def allows = afterWord("allow")
def executes = afterWord("execute")
@@ -15,4 +15,4 @@ trait ScalaTest extends WordSpec with ShouldMatchers with BeforeAndAfter {
def returns = afterWord("return")
def throws = afterWord("throw")
-} \ No newline at end of file
+}