Fix PHPUnit test, remove unneeded test (function is dynamic)

This commit is contained in:
crazywhalecc
2025-07-29 12:14:31 +08:00
parent 83dae09208
commit df76ecb60f
2 changed files with 8 additions and 11 deletions

View File

@@ -34,17 +34,6 @@ final class SPCTargetTest extends TestBase
}
}
/**
* @dataProvider libcProvider
*/
public function testIsStatic(string $libc, bool $expected): void
{
putenv("SPC_LIBC={$libc}");
$result = SPCTarget::isStatic();
$this->assertEquals($expected, $result);
}
/**
* @dataProvider libcProvider
*/