Skip to content

Commit 368b973

Browse files
committed
fixed expected exception annotations
1 parent f291ed2 commit 368b973

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/InlineTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ public function testParseUnquotedAsteriskFollowedByAComment()
225225

226226
/**
227227
* @dataProvider getReservedIndicators
228-
* @expectedException Symfony\Component\Yaml\Exception\ParseException
228+
* @expectedException \Symfony\Component\Yaml\Exception\ParseException
229229
* @expectedExceptionMessage cannot start a plain scalar; you need to quote the scalar.
230230
*/
231231
public function testParseUnquotedScalarStartingWithReservedIndicator($indicator)
@@ -240,7 +240,7 @@ public function getReservedIndicators()
240240

241241
/**
242242
* @dataProvider getScalarIndicators
243-
* @expectedException Symfony\Component\Yaml\Exception\ParseException
243+
* @expectedException \Symfony\Component\Yaml\Exception\ParseException
244244
* @expectedExceptionMessage cannot start a plain scalar; you need to quote the scalar.
245245
*/
246246
public function testParseUnquotedScalarStartingWithScalarIndicator($indicator)

0 commit comments

Comments
 (0)