We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2c0a1a commit b9cb29fCopy full SHA for b9cb29f
tests/ConceptTest.php
@@ -227,7 +227,8 @@ public function testGetMappingPropertiesWithIdenticalLabels()
227
{
228
$vocab = $this->model->getVocabulary('duplicates');
229
$concept = $vocab->getConceptInfo("http://www.skosmos.skos/dup/d3", "en");
230
- $props = $concept->getMappingProperties();
+ // suppress fsockopen PHP warnings caused by trying to resolve www.skosmos.skos
231
+ @$props = $concept->getMappingProperties();
232
$values = $props['skos:closeMatch']->getValues();
233
$this->assertCount(2, $values);
234
}
0 commit comments