summaryrefslogtreecommitdiff
path: root/tests/Utils/TestCallable.php
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2026-06-10 19:00:32 +0100
committerSam Light <sam@lightscale.co.uk>2026-06-10 19:00:32 +0100
commitb899a995e2fd977fbf7497b36b2dbc8d641ef398 (patch)
treee35680ea490fb486da43012bbfaaee8b7ee27f8c /tests/Utils/TestCallable.php
parent57e101668e62aab7d332c1c2f403eee9511de626 (diff)
Started structure for middleware
Diffstat (limited to 'tests/Utils/TestCallable.php')
-rw-r--r--tests/Utils/TestCallable.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Utils/TestCallable.php b/tests/Utils/TestCallable.php
index 526ddf4..67b3d6c 100644
--- a/tests/Utils/TestCallable.php
+++ b/tests/Utils/TestCallable.php
@@ -51,7 +51,7 @@ class TestCallable
return $this->calls[$this->getCallCount() - 1] ?? null;
}
- public function assertIsCalled(): void
+ public function assertCalled(): void
{
Assert::assertGreaterThan(0, $this->getCallCount(), 'Not been called');
}