diff -r 08c99d286e7c -r b37fde30dd4a server/src/tests/libraries/Mappers/CocoonTextRdfMapperTest.php --- a/server/src/tests/libraries/Mappers/CocoonTextRdfMapperTest.php Thu Feb 11 15:42:27 2016 +0100 +++ b/server/src/tests/libraries/Mappers/CocoonTextRdfMapperTest.php Fri Feb 12 15:30:32 2016 +0100 @@ -126,10 +126,10 @@ $this->assertCount(1, $resources, "Must found only one resources of type edm:ProvidedCHO"); $providedCHO = $resources[0]; - $identifier = $providedCHO->getLiteral(''); + $identifier = $providedCHO->getLiteral(''); $this->assertInstanceOf('EasyRdf\Literal', $identifier, "identifier value must be a literal"); - $this->assertEquals(CocoonTextRdfMapperTest::TEST_INPUT_ID, $identifier->getValue(), "Value must be equals to ".CocoonTextRdfMapperTest::TEST_INPUT_ID); + $this->assertEquals(config('corpusparole.corpus_id_scheme') . CocoonTextRdfMapperTest::TEST_INPUT_ID, $identifier->getValue(), "Value must be equals to ".config('corpusparole.corpus_id_scheme').CocoonTextRdfMapperTest::TEST_INPUT_ID); }