Skip to content

Commit 4c49387

Browse files
committed
Fix junit
1 parent 8252735 commit 4c49387

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

simple-config-microprofile/src/test/java/test/org/fugerit/java/simple/config/microprofile/TestConfigParamsMicroprofile.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ public void releaseConfig(Config config) {
9696
Assertions.assertFalse( valueX.isPresent() );
9797
// loose testing
9898
ConfigParams configLoose = new ConfigParamsMicroprofileLoose();
99-
String value3 = config.getValue( "testconfig.param3" );
99+
String value3 = configLoose.getValue( "testconfig.param3" );
100100
Assertions.assertEquals( "value3", value3 );
101-
Assertions.assertNull( config.getValue( "notPresent" ) );
101+
Assertions.assertNull( configLoose.getValue( "notPresent" ) );
102102
}
103103

104104
}

0 commit comments

Comments
 (0)