diff options
| author | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2023-09-08 10:24:59 +0000 |
|---|---|---|
| committer | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2023-09-08 10:24:59 +0000 |
| commit | a5a3937a5345b587cfd301a156b29ff2d50dbcf1 (patch) | |
| tree | d776513e10a40cb3c9face6f0beaeb5a4ada6dd6 /tests/jsonapi | |
| parent | 748b12b78ec49f9e5860736280f6d246c4bac98f (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.php | 2 |
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") ) ); }); |
