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.
2 parents 6b87551 + 58fc733 commit 40e95dbCopy full SHA for 40e95db
tests/DataTest.php
@@ -193,8 +193,8 @@ public function testGetWhenValueDoesNotExist()
193
194
// With a default parameter given:
195
$this->assertSame('DEFAULT', $data->get('foo.bar', 'DEFAULT'));
196
- $this->assertSame(false, $data->get('foo.bar', false));
197
- $this->assertSame(null, $data->get('foo/bar', null));
+ $this->assertFalse($data->get('foo.bar', false));
+ $this->assertNull($data->get('foo/bar', null));
198
199
// Without a default parameter:
200
$this->expectException(DataException::class);
0 commit comments