summaryrefslogtreecommitdiff
path: root/src/test/java/com/stileeducation/markr/controller/TestResultsControllerTest.java
diff options
context:
space:
mode:
authorSzymon Szukalski <szymon@skas.io>2024-07-23 16:33:15 +1000
committerSzymon Szukalski <szymon@skas.io>2024-07-23 16:33:15 +1000
commite120a6d1a9e779cdcb1d293245f55f296e77e91a (patch)
tree0e51c101c3986c319f319785351924a7f2d3df2d /src/test/java/com/stileeducation/markr/controller/TestResultsControllerTest.java
parent6f62cf9d52e1d5353be33f1fbf3429b0be456dc7 (diff)
Remove unused variable
Diffstat (limited to 'src/test/java/com/stileeducation/markr/controller/TestResultsControllerTest.java')
-rw-r--r--src/test/java/com/stileeducation/markr/controller/TestResultsControllerTest.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/test/java/com/stileeducation/markr/controller/TestResultsControllerTest.java b/src/test/java/com/stileeducation/markr/controller/TestResultsControllerTest.java
index 7d6eb37..41a6837 100644
--- a/src/test/java/com/stileeducation/markr/controller/TestResultsControllerTest.java
+++ b/src/test/java/com/stileeducation/markr/controller/TestResultsControllerTest.java
@@ -7,7 +7,6 @@ import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.web.client.TestRestTemplate;
-import org.springframework.boot.test.web.server.LocalServerPort;
import org.springframework.http.*;
import static com.stileeducation.markr.controller.TestResultsController.IMPORT_ENDPOINT;
@@ -16,9 +15,6 @@ import static org.assertj.core.api.Assertions.assertThat;
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class TestResultsControllerTest {
- @LocalServerPort
- private int port;
-
@Autowired
private XmlMapper xmlMapper;