Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken maze tests #338

Merged
merged 1 commit into from
Jan 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion features/unhandled_controller.feature
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ Scenario: Unhandled errors are delivered from controllers
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
And the payload field "events" is an array with 1 element
And the exception "errorClass" ends with "FatalThrowableError"
And the exception "message" equals "Call to undefined function App\Http\Controllers\foo()"
And the exception "message" starts with "Call to undefined function"
And the exception "message" ends with "foo()"
And the event "metaData.request.httpMethod" equals "GET"
And the event "app.type" equals "HTTP"
And the event "context" equals "GET /unhandled_controller_error"
Expand Down
3 changes: 2 additions & 1 deletion features/unhandled_middleware.feature
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ Scenario: Unhandled errors are delivered from middleware
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
And the payload field "events" is an array with 1 element
And the exception "errorClass" ends with "FatalThrowableError"
And the exception "message" equals "Call to undefined function App\Http\Middleware\foo()"
And the exception "message" starts with "Call to undefined function"
And the exception "message" ends with "foo()"
And the event "metaData.request.httpMethod" equals "GET"
And the event "app.type" equals "HTTP"
And the event "context" equals "GET /unhandled_middleware_error"
Expand Down