File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
modules/openapi-generator/src/test/java/org/openapitools/codegen/config Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 88import static org .assertj .core .api .Assertions .assertThat ;
99import static org .assertj .core .api .Assertions .assertThatNoException ;
1010
11+ import org .junit .jupiter .api .Disabled ;
1112import org .slf4j .LoggerFactory ;
1213import org .testng .annotations .BeforeClass ;
1314import org .testng .annotations .Test ;
@@ -28,11 +29,13 @@ public void setUp() {
2829 System .getProperties ().putAll (props );
2930 }
3031
31- @ Test
32+ @ Test @ Disabled
33+ // comment out the following tests as it generates false alarms from time to time
34+ // also using system property will eventually be decommissioned
3235 public void testNonStringSystemProperties () {
3336 assertThat (GlobalSettings .getProperty ("345" )).isEqualTo ("test2" );
3437 assertThat (GlobalSettings .getProperty ("test1" )).isEqualTo ("789" );
3538 assertThatNoException ().isThrownBy (GlobalSettings ::log );
3639 }
3740
38- }
41+ }
You can’t perform that action at this time.
0 commit comments