Skip to content

Commit 9fac260

Browse files
estahnerayd
authored andcommitted
fix: use example.com as example domains
1 parent dfbdda3 commit 9fac260

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Uri/UriRetrieverTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -348,17 +348,17 @@ public function testJsonSchemaOrgMediaTypeBlacklistUnknown()
348348
$mock->method('getContentType')->willReturn('Application/X-Fake-Type');
349349
$retriever = new UriRetriever();
350350

351-
$retriever->confirmMediaType($mock, 'http://iglucentral.com');
351+
$retriever->confirmMediaType($mock, 'http://example.com');
352352
}
353353

354354
public function testJsonSchemaOrgMediaTypeBlacklistAdded()
355355
{
356356
$mock = $this->getMock('JsonSchema\Uri\UriRetriever', array('getContentType'));
357357
$mock->method('getContentType')->willReturn('Application/X-Fake-Type');
358358
$retriever = new UriRetriever();
359-
$retriever->addBlacklistedEndpoint('http://iglucentral.com');
359+
$retriever->addBlacklistedEndpoint('http://example.com');
360360

361-
$retriever->confirmMediaType($mock, 'http://iglucentral.com');
361+
$retriever->confirmMediaType($mock, 'http://example.com');
362362
}
363363

364364
public function testSchemaCache()

0 commit comments

Comments
 (0)