From f9248c327d94115379eb6b3cbce3a3e57fc9bfea Mon Sep 17 00:00:00 2001 From: mftrips <36311744+mftrips@users.noreply.github.com> Date: Fri, 11 May 2018 01:53:54 -0500 Subject: [PATCH] fixed broken test (new isClockwise method) --- .../buttplug/core/Messages/VorzeA10CycloneCmdTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buttplug.core/src/test/java/org/metafetish/buttplug/core/Messages/VorzeA10CycloneCmdTest.java b/buttplug.core/src/test/java/org/metafetish/buttplug/core/Messages/VorzeA10CycloneCmdTest.java index a3a9734..5f8acdc 100644 --- a/buttplug.core/src/test/java/org/metafetish/buttplug/core/Messages/VorzeA10CycloneCmdTest.java +++ b/buttplug.core/src/test/java/org/metafetish/buttplug/core/Messages/VorzeA10CycloneCmdTest.java @@ -34,7 +34,7 @@ public void test() throws IOException { Assert.assertEquals(1, msgs.get(0).id); Assert.assertEquals(0, ((VorzeA10CycloneCmd) msgs.get(0)).deviceIndex); Assert.assertEquals(50, ((VorzeA10CycloneCmd) msgs.get(0)).getSpeed()); - Assert.assertEquals(true, ((VorzeA10CycloneCmd) msgs.get(0)).clockwise); + Assert.assertEquals(true, ((VorzeA10CycloneCmd) msgs.get(0)).isClockwise()); ObjectMapper objectMapper = new ObjectMapper(); JsonNode jsonNode = objectMapper.readValue(testStr, JsonNode.class);