Skip to content
This repository has been archived by the owner on Sep 27, 2020. It is now read-only.

Commit

Permalink
fixed broken test (new isClockwise method)
Browse files Browse the repository at this point in the history
  • Loading branch information
mftrips committed May 11, 2018
1 parent d65635f commit f9248c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f9248c3

Please sign in to comment.