We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e62381 commit 57d30e2Copy full SHA for 57d30e2
datastore/api/test/ConceptsTest.php
@@ -1106,7 +1106,8 @@ public function testPropertyByKindRunQuery()
1106
self::$datastore->upsertBatch([$entity1, $entity2]);
1107
$this->runEventuallyConsistentTest(function () {
1108
$properties = property_by_kind_run_query(self::$datastore);
1109
- $this->assertEquals(['description' => ['STRING']], $properties);
+ $this->assertArrayHasKey('description', $properties);
1110
+ $this->assertEquals(['STRING'], $properties['description']);
1111
});
1112
}
1113
0 commit comments