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 c473cf6 commit 2270b8eCopy full SHA for 2270b8e
tests/Usage/KV/KVCRUDTest.php
@@ -68,8 +68,8 @@ public function testCanGetKey(): void
68
static::assertNull($err, \sprintf('KV::get returned error: %s', (string)$err));
69
static::assertInstanceOf(QueryMeta::class, $qm);
70
static::assertInstanceOf(KVPair::class, $kv);
71
- static::assertEquals(self::KVKey1, $kv->Key);
72
- static::assertEquals(self::KVValue1, $kv->Value);
+ static::assertSame(self::KVKey1, $kv->Key);
+ static::assertSame(self::KVValue1, $kv->Value);
73
}
74
75
/**
0 commit comments