From 26d59b71f049d459b663ec885156bfb8b89aa0c9 Mon Sep 17 00:00:00 2001 From: Crystal Date: Mon, 20 Mar 2023 22:52:42 +0000 Subject: [PATCH] Fix typo in integration test log (#210) I forgot to update the name of this function in the CI log so it looks like it's running the same test twice even though it's not. Co-authored-by: crystal Reviewed-on: https://codeberg.org/Codeberg/pages-server/pulls/210 Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: Crystal Co-committed-by: Crystal --- integration/get_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/get_test.go b/integration/get_test.go index c0a3a47..9d97390 100644 --- a/integration/get_test.go +++ b/integration/get_test.go @@ -124,7 +124,7 @@ func TestRawCustomDomain(t *testing.T) { } func TestRawIndex(t *testing.T) { - log.Println("=== TestRawCustomDomain ===") + log.Println("=== TestRawIndex ===") // test raw domain response for index.html resp, err := getTestHTTPSClient().Get("https://raw.localhost.mock.directory:4430/cb_pages_tests/raw-test/@branch-test/index.html") // need cb_pages_tests fork assert.NoError(t, err)