Skip to content

Commit

Permalink
Merge 5a0bf92 into 659d4a2
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchalamon committed May 20, 2021
2 parents 659d4a2 + 5a0bf92 commit ab2ba13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Bridge/Symfony/Bundle/Test/Client.php
Expand Up @@ -44,7 +44,7 @@ final class Client implements HttpClientInterface
'headers' => ['accept' => ['application/ld+json']],
'body' => '',
'json' => null,
'base_uri' => 'http://example.com',
'base_uri' => 'http://localhost',
'extra' => [],
];

Expand Down
4 changes: 2 additions & 2 deletions tests/Bridge/Symfony/Bundle/Test/ApiTestCaseTest.php
Expand Up @@ -71,7 +71,7 @@ public function testAssertJsonEquals(): void
self::createClient()->request('GET', '/contexts/Address');
$this->assertJsonEquals([
'@context' => [
'@vocab' => 'http://example.com/docs.jsonld#',
'@vocab' => 'http://localhost/docs.jsonld#',
'hydra' => 'http://www.w3.org/ns/hydra/core#',
'name' => 'Address/name',
],
Expand All @@ -84,7 +84,7 @@ public function testAssertJsonEqualsWithJsonObjectString(): void
$this->assertJsonEquals(<<<JSON
{
"@context": {
"@vocab": "http://example.com/docs.jsonld#",
"@vocab": "http://localhost/docs.jsonld#",
"hydra": "http://www.w3.org/ns/hydra/core#",
"name": "Address/name"
}
Expand Down

0 comments on commit ab2ba13

Please sign in to comment.