Skip to content

Commit a75db68

Browse files
Merge 852c98d into 659d4a2
2 parents 659d4a2 + 852c98d commit a75db68

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Bridge/Symfony/Bundle/Test/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ final class Client implements HttpClientInterface
4444
'headers' => ['accept' => ['application/ld+json']],
4545
'body' => '',
4646
'json' => null,
47-
'base_uri' => 'http://example.com',
47+
'base_uri' => 'http://localhost',
4848
'extra' => [],
4949
];
5050

tests/Bridge/Symfony/Bundle/Test/ApiTestCaseTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function testAssertJsonEquals(): void
7171
self::createClient()->request('GET', '/contexts/Address');
7272
$this->assertJsonEquals([
7373
'@context' => [
74-
'@vocab' => 'http://example.com/docs.jsonld#',
74+
'@vocab' => 'http://localhost/docs.jsonld#',
7575
'hydra' => 'http://www.w3.org/ns/hydra/core#',
7676
'name' => 'Address/name',
7777
],
@@ -84,7 +84,7 @@ public function testAssertJsonEqualsWithJsonObjectString(): void
8484
$this->assertJsonEquals(<<<JSON
8585
{
8686
"@context": {
87-
"@vocab": "http://example.com/docs.jsonld#",
87+
"@vocab": "http://localhost/docs.jsonld#",
8888
"hydra": "http://www.w3.org/ns/hydra/core#",
8989
"name": "Address/name"
9090
}

0 commit comments

Comments
 (0)