Skip to content

Commit

Permalink
Fixed errored test
Browse files Browse the repository at this point in the history
Signed-off-by: Marcos Gonzalez Mayedo <[email protected]>
  • Loading branch information
Marcos Gonzalez Mayedo committed Jul 8, 2023
1 parent 30f3b4f commit 67ccf06
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.notNullValue;

public class CwlSinkConfigTest {
private CwlSinkConfig cwlSinkConfig;
Expand All @@ -36,7 +37,7 @@ void check_null_auth_config_test() {

@Test
void check_null_threshold_config_test() {
assertThat(new CwlSinkConfig().getThresholdConfig(), equalTo(null));
assertThat(new CwlSinkConfig().getThresholdConfig(), notNullValue());
}

@Test
Expand Down

0 comments on commit 67ccf06

Please sign in to comment.