We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e8576e commit a954570Copy full SHA for a954570
1 file changed
tests/e2e/Adapter/Scopes/DocumentTests.php
@@ -6189,6 +6189,11 @@ public function testBypassStructureWithSupportForAttributes(): void
6189
{
6190
/** @var Database $database */
6191
$database = static::getDatabase();
6192
+ // for schemaless the validation will be automatically skipped
6193
+ if (!$database->getAdapter()->getSupportForAttributes()) {
6194
+ $this->expectNotToPerformAssertions();
6195
+ return;
6196
+ }
6197
6198
$collectionId = 'successive_update_single';
6199
Authorization::cleanRoles();
0 commit comments