@@ -118,7 +118,7 @@ public function testLoaderThrowsExceptionWhenProviderReturns400ResponseCodeAsser
118118
119119 $ context = $ exception ->context ();
120120 $ this ->assertSame ("https://provider.rdobeheer.nl " , $ context ['issuer ' ]);
121- $ this ->assertSame ("https://provider.rdobeheer.nl /.well-known/openid-configuration " , $ context ['url ' ]);
121+ $ this ->assertSame ("/.well-known/openid-configuration " , $ context ['url ' ]);
122122 $ this ->assertSame (400 , $ context ['response_status_code ' ]);
123123 }
124124 }
@@ -137,7 +137,7 @@ public function testLoaderThrowsExceptionWhenProviderReturns500ResponseCodeAsser
137137
138138 $ context = $ exception ->context ();
139139 $ this ->assertSame ("https://provider.rdobeheer.nl " , $ context ['issuer ' ]);
140- $ this ->assertSame ("https://provider.rdobeheer.nl /.well-known/openid-configuration " , $ context ['url ' ]);
140+ $ this ->assertSame ("/.well-known/openid-configuration " , $ context ['url ' ]);
141141 $ this ->assertSame (500 , $ context ['response_status_code ' ]);
142142 }
143143 }
@@ -156,7 +156,7 @@ public function testLoaderThrowsExceptionWhenProviderReturns200ButNullResponse()
156156
157157 $ context = $ exception ->context ();
158158 $ this ->assertSame ("https://provider.rdobeheer.nl " , $ context ['issuer ' ]);
159- $ this ->assertSame ("https://provider.rdobeheer.nl /.well-known/openid-configuration " , $ context ['url ' ]);
159+ $ this ->assertSame ("/.well-known/openid-configuration " , $ context ['url ' ]);
160160 $ this ->assertSame (200 , $ context ['response_status_code ' ]);
161161 $ this ->assertSame ('' , $ context ['response_body ' ]);
162162 }
@@ -176,7 +176,7 @@ public function testLoaderThrowsExceptionWhenProviderReturns200ButStringResponse
176176
177177 $ context = $ exception ->context ();
178178 $ this ->assertSame ("https://provider.rdobeheer.nl " , $ context ['issuer ' ]);
179- $ this ->assertSame ("https://provider.rdobeheer.nl /.well-known/openid-configuration " , $ context ['url ' ]);
179+ $ this ->assertSame ("/.well-known/openid-configuration " , $ context ['url ' ]);
180180 $ this ->assertSame (200 , $ context ['response_status_code ' ]);
181181 $ this ->assertSame ('some invalid response ' , $ context ['response_body ' ]);
182182 }
0 commit comments