Skip to content

Commit c7a12a8

Browse files
authored
Update test URL to a valid mock endpoint (#26)
1 parent 70476ef commit c7a12a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/AbstractDriverTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ abstract class AbstractDriverTest extends PHPUnit
3636

3737
public function testSimple(): void
3838
{
39-
$url = 'https://run.mocky.io/v3/92e40ef8-6328-4b8e-af3c-9a26c72abd3c';
39+
$url = 'https://run.mocky.io/v3/965f7c10-5a16-4e13-a9b9-2bcfd30a25f2';
4040
$result = $this->getClient()->request($url);
4141

4242
isSame(200, $result->code);
@@ -171,7 +171,7 @@ public function testStatus404(): void
171171

172172
public function testStatus404Body(): void
173173
{
174-
$result = $this->getClient()->request('https://run.mocky.io/v3/54bdf866-5da9-4e15-aeb4-4d51ee870dc4');
174+
$result = $this->getClient()->request('https://run.mocky.io/v3/037dd813-edd9-4cc9-bab9-9244c0b5c5ec');
175175

176176
isSame(404, $result->code);
177177
is('{"error": "mock_not_found"}', $result->getBody());

0 commit comments

Comments
 (0)