in src/ExpectObj.hack [61:69]
public function toEqualWithDelta(
?num $expected,
float $delta,
string $msg = '',
mixed ...$args
): void where T as ?num {
$msg = \vsprintf($msg, $args);
$this->assertEqualsWithDelta($expected, $this->var, $delta, $msg);
}