8000 minor #25705 [Form] AbstractLayoutTest - fix DOMDocument casing (Toma… · symfony/symfony@813f957 · GitHub
[go: up one dir, main page]

Skip to content

Commit 813f957

Browse files
minor #25705 [Form] AbstractLayoutTest - fix DOMDocument casing (TomasVotruba)
This PR was merged into the 2.7 branch. Discussion ---------- [Form] AbstractLayoutTest - fix DOMDocument casing | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | License | MIT This actually breaks static analysis, because casing is incorrect Commits ------- a93861f [Form] AbstractLayoutTest - fix DOMDocument casing
2 parents 05adcd0 + a93861f commit 813f957

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Form/Tests/AbstractLayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ protected function assertXpathNodeValue(\DOMElement $element, $expression, $node
5858

5959
protected function assertMatchesXpath($html, $expression, $count = 1)
6060
{
61-
$dom = new \DomDocument('UTF-8');
61+
$dom = new \DOMDocument('UTF-8');
6262
try {
6363
// Wrap in <root> node so we can load HTML with multiple tags at
6464
// the top level

0 commit comments

Comments
 (0)
0