Skip to content

Commit

Permalink
fixed mapping test
Browse files Browse the repository at this point in the history
  • Loading branch information
lwluc committed Nov 29, 2024
1 parent 73264d5 commit c62a82e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void should_map_all_fields() {

SoftAssertions softAssertions = new SoftAssertions();
softAssertions.assertThat(result.getOptimalTime().getValue()).isEqualTo(emissionsData.getTimestamp());
softAssertions.assertThat(result.getEarliestForecastedValue().getValue()).isEqualTo(0.0);
softAssertions.assertThat(result.getEarliestForecastedValue().getValue()).isEqualTo(emissionsData.getValue());
softAssertions.assertThat(result.getOptimalValue().getValue()).isEqualTo(emissionsData.getValue());
softAssertions.assertAll();
}
Expand Down

0 comments on commit c62a82e

Please sign in to comment.