From bfa2e558220441db8264d2afa07c200c7fb19be7 Mon Sep 17 00:00:00 2001 From: Don Brutzman <brutzman@nps.edu> Date: Tue, 25 Aug 2020 23:23:09 -0700 Subject: [PATCH] corrected enumeration naming --- test/edu/nps/moves/dis7/NullFieldsEntityMarshallTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/edu/nps/moves/dis7/NullFieldsEntityMarshallTest.java b/test/edu/nps/moves/dis7/NullFieldsEntityMarshallTest.java index aa154b04bd..677fd2770b 100644 --- a/test/edu/nps/moves/dis7/NullFieldsEntityMarshallTest.java +++ b/test/edu/nps/moves/dis7/NullFieldsEntityMarshallTest.java @@ -4,7 +4,7 @@ */ package edu.nps.moves.dis7; -import edu.nps.moves.dis7.entities.usa.platform.land.LAV_105; +import edu.nps.moves.dis7.entities.usa.platform.land.LAV105; import java.nio.ByteBuffer; import org.junit.jupiter.api.*; import static org.junit.jupiter.api.Assertions.*; @@ -18,7 +18,7 @@ import static org.junit.jupiter.api.Assertions.*; @DisplayName("Null Fields Entity Marshall Test") public class NullFieldsEntityMarshallTest { - LAV_105 lav105; + LAV105 lav105; @BeforeAll public static void beforeAllTests() @@ -33,7 +33,7 @@ public class NullFieldsEntityMarshallTest @BeforeEach public void setUp() { - lav105 = new LAV_105(); + lav105 = new LAV105(); } @AfterEach -- GitLab