From 6c3556885713a152445aaca26f0c75385100beca Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Sun, 12 Apr 2015 11:09:07 +0100 Subject: [PATCH] Issue #2469169 by Berdir: SchemaCheckTraitTest should use assertEqual(), not assertIdentical() --- core/modules/config/src/Tests/SchemaCheckTraitTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/config/src/Tests/SchemaCheckTraitTest.php b/core/modules/config/src/Tests/SchemaCheckTraitTest.php index c0de5d7f8b00..25d150da8bca 100644 --- a/core/modules/config/src/Tests/SchemaCheckTraitTest.php +++ b/core/modules/config/src/Tests/SchemaCheckTraitTest.php @@ -66,7 +66,7 @@ public function testTrait() { 'config_test.types:new_array' => 'missing schema', 'config_test.types:boolean' => 'non-scalar value but not defined as an array (such as mapping or sequence)', ); - $this->assertIdentical($ret, $expected); + $this->assertEqual($ret, $expected); } } -- GitLab