[ISSUE-465][Bug] Common module scalatest style unit test don't actually run (#472)
This commit is contained in:
parent
555c938d70
commit
6d308eb4f2
@ -153,6 +153,15 @@
|
||||
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.scalatest</groupId>
|
||||
<artifactId>scalatest-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<parallel>false</parallel>
|
||||
<forkMode>once</forkMode>
|
||||
<argLine>-Xmx2048m</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.xolstice.maven.plugins</groupId>
|
||||
<artifactId>protobuf-maven-plugin</artifactId>
|
||||
|
||||
@ -149,6 +149,6 @@ class WorkerInfoSuite extends RssFunSuite {
|
||||
test("WorkerInfo equals when numSlots different.") {
|
||||
val worker1 = new WorkerInfo("h1", 10001, 10002, 10003, 1000, null, null)
|
||||
val worker2 = new WorkerInfo("h1", 10001, 10002, 10003, 2000, null, null)
|
||||
assertEquals(worker1, worker2)
|
||||
assertNotEquals(worker1, worker2)
|
||||
}
|
||||
}
|
||||
|
||||
@ -114,6 +114,11 @@
|
||||
<plugin>
|
||||
<groupId>org.scalatest</groupId>
|
||||
<artifactId>scalatest-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<parallel>false</parallel>
|
||||
<forkMode>once</forkMode>
|
||||
<argLine>-Xmx2048m</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.xolstice.maven.plugins</groupId>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user