From 391329c1fadd7245e370caa5c4638f6f68ecf34f Mon Sep 17 00:00:00 2001 From: Daniel Chao Date: Mon, 8 Jun 2026 14:11:49 -0700 Subject: [PATCH] Fix test (#1667) The previous PR (https://github.com/apple/pkl/pull/1637) got auto-merged by mistake; there's a failing test here --- pkl-core/src/test/kotlin/org/pkl/core/http/HttpClientTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkl-core/src/test/kotlin/org/pkl/core/http/HttpClientTest.kt b/pkl-core/src/test/kotlin/org/pkl/core/http/HttpClientTest.kt index fe1dc9d74..a26de7909 100644 --- a/pkl-core/src/test/kotlin/org/pkl/core/http/HttpClientTest.kt +++ b/pkl-core/src/test/kotlin/org/pkl/core/http/HttpClientTest.kt @@ -260,7 +260,7 @@ class HttpClientTest { assertThatCode { client.send(request, HttpResponse.BodyHandlers.ofString(), NoopChecker) } .hasMessageContaining( """ - Cannot follow HTTP redirect because the response Location header has a malformed URI. + Cannot follow HTTP redirect because the response 'Location' header has a malformed URI. """ .trimIndent() )