File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
ui-tests-starter/tst-243+/software/aws/toolkits/jetbrains/uitests Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,13 @@ class OfflineAmazonQInlineCompletionTest {
3030 di = DI {
3131 extend(di)
3232 bindSingleton<CIServer >(overrides = true ) { TestCIServer }
33- val starterConfigurationValues = starterConfigurationStorageDefaults.toMutableMap()
34- starterConfigurationValues[" ENV_LOG_ENVIRONMENT_VARIABLES" ] = (! System .getenv(" CI" ).toBoolean()).toString()
35- bindSingleton<ConfigurationStorage > { ConfigurationStorage (this , starterConfigurationValues.toMap()) }
33+ val defaults = ConfigurationStorage .instance().defaults.toMutableMap().apply {
34+ put(" LOG_ENVIRONMENT_VARIABLES" , " false" )
35+ }
36+
37+ bindSingleton<ConfigurationStorage >(overrides = true ) {
38+ ConfigurationStorage (this , defaults)
39+ }
3640 }
3741 }
3842
You can’t perform that action at this time.
0 commit comments