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 09bee40 commit 1ad6122Copy full SHA for 1ad6122
tests/Integration/TypesTest.php
@@ -30,7 +30,8 @@ public function shouldBeDecimalLongValues(): void
30
31
$event = $this->createAndInsertValue($create_query, $insert_query);
32
33
- self::assertEquals('9000000123.1234560000', $event->getValues()[0]['test']);
+ self::assertSame($expect = '9000000123.1234560000', $value = $event->getValues()[0]['test']);
34
+ self::assertSame(strlen($expect), strlen($value));
35
}
36
37
/**
0 commit comments