in src/ExpectObj.hack [71:83]
public function toAlmostEqual(
?num $expected,
string $msg = '',
mixed ...$args
): void where T as ?num {
$msg = \vsprintf($msg, $args);
$this->toEqualWithDelta(
$expected,
1.19e-07 * 4, // roughly equivalent to gtest
'%s',
$msg,
);
}