(fix): replace last Query::TYPE_SELECT in test

This commit is contained in:
Jake Barnby
2026-03-27 12:35:50 +13:00
parent 29390a6b34
commit 79afbdddf7
@@ -5,6 +5,7 @@ namespace Tests\Unit\Utopia\Database\Query;
use Appwrite\Utopia\Database\RuntimeQuery;
use PHPUnit\Framework\TestCase;
use Utopia\Database\Query;
use Utopia\Query\Method;
class RuntimeQueryTest extends TestCase
{
@@ -680,7 +681,7 @@ class RuntimeQueryTest extends TestCase
public function testSelectInAllowedQueries(): void
{
$this->assertContains(Query::TYPE_SELECT, RuntimeQuery::ALLOWED_QUERIES);
$this->assertContains(Method::Select, RuntimeQuery::ALLOWED_QUERIES);
}
public function testIsSelectAllWithNonSelectQuery(): void