aboutsummaryrefslogtreecommitdiff
path: root/tests/jsonapi
diff options
context:
space:
mode:
authorElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2023-09-08 10:24:59 +0000
committerElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2023-09-08 10:24:59 +0000
commita5a3937a5345b587cfd301a156b29ff2d50dbcf1 (patch)
treed776513e10a40cb3c9face6f0beaeb5a4ada6dd6 /tests/jsonapi
parent748b12b78ec49f9e5860736280f6d246c4bac98f (diff)
fix quotes in SQL, fixes #1443
Closes #1443 Merge request studip/studip!2126
Diffstat (limited to 'tests/jsonapi')
-rw-r--r--tests/jsonapi/BlubberThreadsIndexTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/jsonapi/BlubberThreadsIndexTest.php b/tests/jsonapi/BlubberThreadsIndexTest.php
index ec2929c..ab6d200 100644
--- a/tests/jsonapi/BlubberThreadsIndexTest.php
+++ b/tests/jsonapi/BlubberThreadsIndexTest.php
@@ -58,7 +58,7 @@ class BlubberThreadsIndexTest extends \Codeception\Test\Unit
return count(
$this->upgradeAndFilterThreads(
$credentials,
- \BlubberThread::findBySQL('context_type = "public" AND visible_in_stream')
+ \BlubberThread::findBySQL("context_type = 'public' AND visible_in_stream")
)
);
});