We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1556e6e commit 887775dCopy full SHA for 887775d
1 file changed
tests/e2e/Adapter/Scopes/SchemalessTests.php
@@ -1691,8 +1691,9 @@ public function testSchemalessNestedObjectAttributeQueries(): void
1691
/** @var Database $database */
1692
$database = static::getDatabase();
1693
1694
- // Only run for schemaless adapters that support object attributes
1695
- if ($database->getAdapter()->getSupportForAttributes() || !$database->getAdapter()->getSupportForObject()) {
+ /** @var Database $database */
+ $database = static::getDatabase();
1696
+ if ($database->getAdapter()->getSupportForAttributes()) {
1697
$this->expectNotToPerformAssertions();
1698
return;
1699
}
0 commit comments