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 3b98d88 commit e42d751Copy full SHA for e42d751
tests/Model/CollectionInfoTest.php
@@ -42,13 +42,13 @@ public function testMissingFields() : void
42
]);
43
44
$this->assertSame([], $info->getOptions());
45
- $this->assertFalse(isset($info['options']));
+ $this->assertArrayNotHasKey('options', $info);
46
47
$this->assertSame([], $info->getInfo());
48
- $this->assertFalse(isset($info['info']));
+ $this->assertArrayNotHasKey('info', $info);
49
50
$this->assertSame([], $info->getIdIndex());
51
- $this->assertFalse(isset($info['idIndex']));
+ $this->assertArrayNotHasKey('idIndex', $info);
52
}
53
54
public function testCappedCollectionMethods()
0 commit comments