summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDaniel Starzmann <daniel@starze.de>2023-04-12 16:18:05 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2023-04-16 11:13:30 +0200
commit2d4cb5ed1c0fba33be5dcfc837a4af41e3d948c4 (patch)
tree7377d7925dd051d7282fce5eac67b6b68d44ff46 /tests
parent51d026a46aaced44385c0244747f70456b113b56 (diff)
Improve sql query performance by removing unused payload
Signed-off-by: Daniel Starzmann <daniel@starze.de>
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Db/ItemMapperTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Db/ItemMapperTest.php b/tests/Unit/Db/ItemMapperTest.php
index 80421bc0a..397f3be2c 100644
--- a/tests/Unit/Db/ItemMapperTest.php
+++ b/tests/Unit/Db/ItemMapperTest.php
@@ -419,7 +419,7 @@ class ItemMapperTest extends MapperTestUtility
$this->builder->expects($this->once())
->method('select')
- ->with('items.*')
+ ->with('items.id')
->will($this->returnSelf());
$this->builder->expects($this->once())