Skip to content

Commit

Permalink
Fixed sonar code smells
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbourelly999 committed Jul 31, 2023
1 parent a1b82d4 commit 4bb37a4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ public void testContainsSensor() {

@Test
public void testGetterSetterConstructor() {
assertEquals(instance.getInfrastructureId(), "SomeID");
assertEquals(instance.getLocation(), CartesianPoint.ORIGO);
assertEquals(instance.getRxMessagePort(), 3456);
assertEquals(instance.getTimeSyncPort(), 5667);
assertEquals("SomeID", instance.getInfrastructureId());
assertEquals(CartesianPoint.ORIGO, instance.getLocation());
assertEquals(3456, instance.getRxMessagePort());
assertEquals(5667, instance.getTimeSyncPort());
}
}

0 comments on commit 4bb37a4

Please sign in to comment.