Skip to content

Commit

Permalink
fix psr2 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
graste committed May 9, 2017
1 parent a8d06d0 commit caf20cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Guard/VariableGuardTest.php
Expand Up @@ -32,7 +32,8 @@ public function testGuardThrowsWhenExpressionUsesUndefinedParameter()
$this->expectException(Error::CLASS);
$this->expectExceptionCode(1);
$this->expectExceptionMessage(
'Expression evaluation failed. Reason: Variable "event" is not valid around position 1 for expression `event.foo === "bar"`.' .
'Expression evaluation failed. Reason: ' .
'Variable "event" is not valid around position 1 for expression `event.foo === "bar"`.' .
"\nExpression used: " . $expression .
"\nExpression vars: subject(object) foo(string) asdf(string) "
);
Expand Down

0 comments on commit caf20cb

Please sign in to comment.