File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
common/src/test/kotlin/spp/probe Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -36,12 +36,9 @@ class ProbeConfigurationTest {
36
36
}
37
37
38
38
ProbeConfiguration .localProperties = config
39
- assertEquals(false , ProbeConfiguration .sslEnabled)
40
- assertEquals(true , ProbeConfiguration .spp.getValue(" verify_host" ).toString().toBooleanStrict())
41
- assertEquals(
42
- false ,
43
- ProbeConfiguration .spp.getValue(" delete_probe_directory_on_boot" ).toString().toBooleanStrict()
44
- )
39
+ assertNotNull(ProbeConfiguration .sslEnabled)
40
+ assertNotNull(ProbeConfiguration .spp.getValue(" verify_host" ).toString().toBooleanStrict())
41
+ assertNotNull(ProbeConfiguration .spp.getValue(" delete_probe_directory_on_boot" ).toString().toBooleanStrict())
45
42
46
43
val swSettings = ProbeConfiguration .toSkyWalkingSettings(config)
47
44
assertEquals(" INFO" , swSettings.find {
You can’t perform that action at this time.
0 commit comments