mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 15:11:59 +01:00
[network] Fix build (#8800)
Introduced in 895455b
Signed-off-by: Fabian Wolter <github@fabian-wolter.de>
This commit is contained in:
parent
895455b40f
commit
8a88b9925d
@ -68,7 +68,7 @@ public class LatencyParserTest {
|
||||
Optional<Double> resultLatency = latencyParser.parseLatency(input);
|
||||
|
||||
// Assert
|
||||
assertTrue(resultLatency.isPresent());
|
||||
assertEquals(2, resultLatency.get(), 0);
|
||||
Assert.assertTrue(resultLatency.isPresent());
|
||||
Assert.assertEquals(2, resultLatency.get(), 0);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user