From 0c790c17215b990cb80db23182aae6fcbbacc29d Mon Sep 17 00:00:00 2001 From: fjc40 Date: Wed, 17 May 2017 13:48:05 +1200 Subject: [PATCH] Mock.Polars: Was accidentally using testng in the PolarsTest. Changed it to junit. #story[873] --- mock/src/test/java/seng302/Model/PolarsTest.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mock/src/test/java/seng302/Model/PolarsTest.java b/mock/src/test/java/seng302/Model/PolarsTest.java index 11a42de3..d3e61d5d 100644 --- a/mock/src/test/java/seng302/Model/PolarsTest.java +++ b/mock/src/test/java/seng302/Model/PolarsTest.java @@ -1,8 +1,7 @@ package seng302.Model; import org.junit.Before; -import org.testng.annotations.BeforeMethod; -import org.testng.annotations.Test; +import org.junit.Test; import seng302.DataInput.PolarParser; import seng302.Exceptions.InvalidPolarFileException; @@ -17,7 +16,7 @@ public class PolarsTest { private double angleEpsilon = 2; private double speedEpsilon = 0.5; - @BeforeMethod + @Before /** * Creates the Polars object for the tests. */