Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Commit

Permalink
#14 Fix the test
Browse files Browse the repository at this point in the history
  • Loading branch information
baardl committed Sep 10, 2020
1 parent e8c36a3 commit 0bc3c96
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ void buildObservationFromConfirmedCovNotificationTest() {
assertEquals("AnalogValue_1", source.getObjectId());

//Verify value
Observation observation = observations.getObservations().get(0);
Observation observation = observations.getObservations().get(1);
assertEquals("StatusFlags", observation.getName());
assertEquals("0400", observation.getValue());
observation = observations.getObservations().get(1);
assertEquals("#0400", observation.getValue());
observation = observations.getObservations().get(0);
assertEquals("PresentValue", observation.getName());
assertEquals("00000000", observation.getValue());
assertEquals(0.0f, observation.getValue());

//TimeRemaining
int expectedTimeRemaingSeconds = 299;
Expand Down

0 comments on commit 0bc3c96

Please sign in to comment.