diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigFileContentTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigFileContentTest.php index e621e5b..1e3bf56 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigFileContentTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigFileContentTest.php @@ -121,10 +121,10 @@ function testReadWriteConfig() { $this->assertNull($config->get('i.dont.exist'), 'Non-existent nested value returned NULL.'); // Read false value. - $this->assertSame($config->get($false_key), FALSE, "Boolean FALSE value returned the FALSE."); + $this->assertFalse($config->get($false_key), "Boolean FALSE value returned the FALSE."); // Read true value. - $this->assertSame($config->get($true_key), TRUE, "Boolean TRUE value returned the TRUE."); + $this->assertTrue($config->get($true_key), "Boolean TRUE value returned the TRUE."); // Read null value. $this->assertIdentical($config->get('null'), NULL);