summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoranoy <anoymouserver+github@mailbox.org>2021-01-15 21:47:18 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-01-17 17:56:37 +0100
commitc67feb8d8d388e3b16603b2253ad7f86d8d72fd9 (patch)
tree4c2e0a0a352f186d95b9d86171b24595da159cbe /tests
parent4caa9d996df832fc43bd3fa71ba5d858a31cf2b5 (diff)
fix TypeError caused by type conversion in controller
Signed-off-by: anoy <anoymouserver+github@mailbox.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Controller/ItemApiControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Controller/ItemApiControllerTest.php b/tests/Unit/Controller/ItemApiControllerTest.php
index 8177bb0a2..91181333a 100644
--- a/tests/Unit/Controller/ItemApiControllerTest.php
+++ b/tests/Unit/Controller/ItemApiControllerTest.php
@@ -150,7 +150,7 @@ class ItemApiControllerTest extends TestCase
->with(
$this->equalTo(2),
$this->equalTo(1),
- $this->equalTo('30000000'),
+ $this->equalTo(30000000),
$this->equalTo(true),
$this->equalTo($this->user->getUID())
)