diff --git a/core/tests/PolyfillsTest.php b/core/tests/PolyfillsTest.php index 03f95fe6..06ea0212 100644 --- a/core/tests/PolyfillsTest.php +++ b/core/tests/PolyfillsTest.php @@ -46,6 +46,8 @@ class PolyfillsTest extends TestCase $this->assertTrue(bool_escape(true)); $this->assertFalse(bool_escape(false)); + $this->assertFalse(bool_escape(null)); + $this->assertTrue(bool_escape("true")); $this->assertFalse(bool_escape("false"));