You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Synchronizing the classes ensures that no tests are lost when the legacy
API is removed in symfony#16020 for Symfony 3.0, thus mitigating the risk of
future regressions.
$this->fail('->parse() throws an Exception if the css selector is not valid');
44
+
} catch (\Exception$e) {
45
+
$this->assertInstanceOf('\Symfony\Component\CssSelector\Exception\ParseException', $e, '->parse() throws an Exception if the css selector is not valid');
46
+
$this->assertEquals('Expected identifier, but <eof at 3> found.', $e->getMessage(), '->parse() throws an Exception if the css selector is not valid');
0 commit comments