Skip to content

Commit

Permalink
BC: remove trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Dec 1, 2024
1 parent 5fd4ce4 commit fe6c7bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/SAML2/DOMDocumentFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function testStringThatContainsDocTypeIsNotAccepted2(): void
<foo>y</foo>';
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage(
'Dangerous XML detected, DOCTYPE nodes are not allowed in the XML body',
'Dangerous XML detected, DOCTYPE nodes are not allowed in the XML body'
);
DOMDocumentFactory::fromString($xml);
}
Expand Down

0 comments on commit fe6c7bd

Please sign in to comment.