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 8
8
import static org .assertj .core .api .Assertions .assertThat ;
9
9
import static org .assertj .core .api .Assertions .assertThatNoException ;
10
10
11
+ import org .junit .jupiter .api .Disabled ;
11
12
import org .slf4j .LoggerFactory ;
12
13
import org .testng .annotations .BeforeClass ;
13
14
import org .testng .annotations .Test ;
@@ -28,11 +29,13 @@ public void setUp() {
28
29
System .getProperties ().putAll (props );
29
30
}
30
31
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
32
35
public void testNonStringSystemProperties () {
33
36
assertThat (GlobalSettings .getProperty ("345" )).isEqualTo ("test2" );
34
37
assertThat (GlobalSettings .getProperty ("test1" )).isEqualTo ("789" );
35
38
assertThatNoException ().isThrownBy (GlobalSettings ::log );
36
39
}
37
40
38
- }
41
+ }
You can’t perform that action at this time.
0 commit comments