Skip to content

Commit 049d6db

Browse files
committed
Merge branch 'isomarcte-updateScalaTestVersionTo3x'
2 parents 4c16ee0 + b36f025 commit 049d6db

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<scala.major.version>2.11</scala.major.version>
2020
<scala.minor.version>7</scala.minor.version>
2121
<scala.version>${scala.major.version}.${scala.minor.version}</scala.version>
22-
<scalatest.version>2.2.6</scalatest.version>
22+
<scalatest.version>3.0.1</scalatest.version>
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2525
<build.timestamp>${maven.build.timestamp}</build.timestamp>

src/test/scala/org/scalatest/tools/maven/PluginTest.scala

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
package org.scalatest.tools.maven
22

33
import java.io.File
4-
import org.scalatest.matchers.ShouldMatchers
4+
import org.scalatest.Matchers
55
import org.scalatest.junit.JUnit3Suite
66
import java.util.ArrayList
77
import org.scalatest.BeforeAndAfterAll
88

99
/**
1010
* @author Jon -Anders Teigen
1111
*/
12-
class PluginTest extends JUnit3Suite with ShouldMatchers with PluginMatchers with BeforeAndAfterAll {
12+
final class PluginTest
13+
extends JUnit3Suite
14+
with BeforeAndAfterAll
15+
with Matchers
16+
with PluginMatchers {
1317
val tmpDir = new File(System.getProperty("java.io.tmpdir"))
1418
val reportsDirectory = new File(tmpDir, "reportsDirectory")
1519
val baseDir = new File(tmpDir, "basedir");

0 commit comments

Comments
 (0)