Skip to content

Commit 2270b8e

Browse files
committed
i guess assertSame is more better?
1 parent c473cf6 commit 2270b8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Usage/KV/KVCRUDTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ public function testCanGetKey(): void
6868
static::assertNull($err, \sprintf('KV::get returned error: %s', (string)$err));
6969
static::assertInstanceOf(QueryMeta::class, $qm);
7070
static::assertInstanceOf(KVPair::class, $kv);
71-
static::assertEquals(self::KVKey1, $kv->Key);
72-
static::assertEquals(self::KVValue1, $kv->Value);
71+
static::assertSame(self::KVKey1, $kv->Key);
72+
static::assertSame(self::KVValue1, $kv->Value);
7373
}
7474

7575
/**

0 commit comments

Comments
 (0)