Skip to content

Commit c40d3b4

Browse files
[TwigBridge] Fix TwigValidatorTest expectation
1 parent 6ae4c85 commit c40d3b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/Twig/Tests/Validator/Constraints/TwigValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public static function getInvalidValues()
120120
// Unknown filter error
121121
['Hello {{ name|unknown_filter }}', 'Unknown "unknown_filter" filter at line 1.', 1],
122122
// Invalid variable syntax
123-
['Hello {{ .name }}', 'Unexpected token "punctuation" of value "." at line 1.', 1],
123+
['Hello {{ .name }}', 'Unexpected token "operator" of value "." at line 1.', 1],
124124
];
125125
}
126126
}

0 commit comments

Comments
 (0)