From d831973f15ce13a4cdf3e4e8ec6d3f79c0017399 Mon Sep 17 00:00:00 2001 From: Fabian Winkler Date: Fri, 5 Jul 2024 12:03:24 +0200 Subject: [PATCH] Fix failing test provisionally --- spec/features/examples/intercept_request_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/features/examples/intercept_request_spec.rb b/spec/features/examples/intercept_request_spec.rb index f952089..412b618 100644 --- a/spec/features/examples/intercept_request_spec.rb +++ b/spec/features/examples/intercept_request_spec.rb @@ -7,7 +7,7 @@ end it 'should intercept a GET request directly' do - stub = proxy.stub('http://example.com/').and_return( + stub = proxy.stub('https://example.com:443/').and_return( headers: { 'Access-Control-Allow-Origin' => '*' }, code: 200 )