in src/Assert.hack [201:212]
public function assertNotNull(mixed $actual, string $message = ''): void {
if ($actual !== null) {
return;
}
throw new ExpectationFailedException(
Str\format(
"%s\nFailed asserting that %s is not null",
$message,
\var_export($actual, true),
),
);
}