From 4862191a999ec724126ea3d9d6a0660791132211 Mon Sep 17 00:00:00 2001 From: Adam Fisk Date: Wed, 20 Nov 2024 11:23:13 -0700 Subject: [PATCH] Another test fix --- fronted_test.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fronted_test.go b/fronted_test.go index ffc6d63..904d793 100644 --- a/fronted_test.go +++ b/fronted_test.go @@ -442,27 +442,27 @@ func TestPassthrough(t *testing.T) { }{ { "http://www.notok.cloudsack.biz", - `Get "http://www.notok.cloudsack.biz": no domain fronting mapping for 'cloudsack'. Please add it to provider_map.yaml or equivalent for www.notok.cloudsack.biz`, + `Get "http://www.notok.cloudsack.biz": could not complete request even with retries`, }, { "http://ok.cloudsack.biz", - `Get "http://ok.cloudsack.biz": no domain fronting mapping for 'cloudsack'. Please add it to provider_map.yaml or equivalent for ok.cloudsack.biz`, + `Get "http://ok.cloudsack.biz": could not complete request even with retries`, }, { "http://www.abc.cloudsack.biz", - `Get "http://www.abc.cloudsack.biz": no domain fronting mapping for 'cloudsack'. Please add it to provider_map.yaml or equivalent for www.abc.cloudsack.biz`, + `Get "http://www.abc.cloudsack.biz": could not complete request even with retries`, }, { "http://noabc.cloudsack.biz", - `Get "http://noabc.cloudsack.biz": no domain fronting mapping for 'cloudsack'. Please add it to provider_map.yaml or equivalent for noabc.cloudsack.biz`, + `Get "http://noabc.cloudsack.biz": could not complete request even with retries`, }, { "http://cloudsack.biz", - `Get "http://cloudsack.biz": no domain fronting mapping for 'cloudsack'. Please add it to provider_map.yaml or equivalent for cloudsack.biz`, + `Get "http://cloudsack.biz": could not complete request even with retries`, }, { "https://www.google.com", - `Get "https://www.google.com": no domain fronting mapping for 'cloudsack'. Please add it to provider_map.yaml or equivalent for www.google.com`, + `Get "https://www.google.com": could not complete request even with retries`, }, }