From 9b67eca38be66b5413be7c3d923f1d2742a89e7b Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Sat, 11 Feb 2023 04:07:21 +0100 Subject: [PATCH] use test repo within cb_pages_tests --- integration/get_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/get_test.go b/integration/get_test.go index ee4848c..b70eeed 100644 --- a/integration/get_test.go +++ b/integration/get_test.go @@ -112,7 +112,7 @@ func TestCustomDomainRedirects(t *testing.T) { func TestRawCustomDomain(t *testing.T) { log.Println("=== TestRawCustomDomain ===") // test raw domain response for custom domain branch - resp, err := getTestHTTPSClient().Get("https://raw.localhost.mock.directory:4430/crystal/raw-test/example") // need cb_pages_tests fork + resp, err := getTestHTTPSClient().Get("https://raw.localhost.mock.directory:4430/cb_pages_tests/raw-test/example") // need cb_pages_tests fork assert.NoError(t, err) if !assert.NotNil(t, resp) { t.FailNow() @@ -126,7 +126,7 @@ func TestRawCustomDomain(t *testing.T) { func TestRawIndex(t *testing.T) { log.Println("=== TestRawCustomDomain ===") // test raw domain response for index.html - resp, err := getTestHTTPSClient().Get("https://raw.localhost.mock.directory:4430/crystal/raw-test/@branch-test/index.html") // need cb_pages_tests fork + 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) if !assert.NotNil(t, resp) { t.FailNow()