Merge pull request #7345 from guilliamxavier/improve-DOMDocument-construct
Correct DOMDocument constructor in test
This commit is contained in:
commit
96c344d22b
1 changed files with 2 additions and 2 deletions
|
@ -152,8 +152,8 @@ class XmlMappingDriverTest extends AbstractMappingDriverTest
|
|||
*/
|
||||
public function testValidateXmlSchema($xmlMappingFile)
|
||||
{
|
||||
$xsdSchemaFile = __DIR__ . '/../../../../../doctrine-mapping.xsd';
|
||||
$dom = new \DOMDocument('UTF-8');
|
||||
$xsdSchemaFile = __DIR__ . '/../../../../../doctrine-mapping.xsd';
|
||||
$dom = new \DOMDocument();
|
||||
|
||||
$dom->load($xmlMappingFile);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue