From 33621e42d0fec14b519ef14c8a9127039cf92940 Mon Sep 17 00:00:00 2001 From: Matas Lauzadis Date: Mon, 29 Apr 2024 13:21:59 -0400 Subject: [PATCH] reorder tests --- .../kotlin/runtime/http/engine/EnvironmentProxySelectorTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/protocol/http-client/common/test/aws/smithy/kotlin/runtime/http/engine/EnvironmentProxySelectorTest.kt b/runtime/protocol/http-client/common/test/aws/smithy/kotlin/runtime/http/engine/EnvironmentProxySelectorTest.kt index d6bb93edf..40ecc8833 100644 --- a/runtime/protocol/http-client/common/test/aws/smithy/kotlin/runtime/http/engine/EnvironmentProxySelectorTest.kt +++ b/runtime/protocol/http-client/common/test/aws/smithy/kotlin/runtime/http/engine/EnvironmentProxySelectorTest.kt @@ -60,8 +60,8 @@ class EnvironmentProxySelectorTest { // multiple no proxy hosts normalization TestCase(ProxyConfig.Direct, env = mapOf("no_proxy" to "example.com,.amazon.com") + httpsProxyEnv), - TestCase(ProxyConfig.Direct, props = mapOf("http.nonProxyHosts" to "example.com|.amazon.com") + httpsProxyProps), TestCase(ProxyConfig.Direct, props = mapOf("http.noProxyHosts" to "example.com|.amazon.com") + httpsProxyProps), + TestCase(ProxyConfig.Direct, props = mapOf("http.nonProxyHosts" to "example.com|.amazon.com") + httpsProxyProps), // environment TestCase(expectedProxyConfig, env = httpsProxyEnv),