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
{{ message }}
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
The mocks are being flagged as a failing line during a test failure. This is due to the fact that Controller.Call(). invokes t.Helper(), but the mock does not. This means that instead of the offending line being called out, the mock is.
This could be solved by having the mock also call t.Helper().
The text was updated successfully, but these errors were encountered:
The mocks are being flagged as a failing line during a test failure. This is due to the fact that
Controller.Call()
. invokest.Helper()
, but the mock does not. This means that instead of the offending line being called out, the mock is.This could be solved by having the mock also call
t.Helper()
.The text was updated successfully, but these errors were encountered: