From 47c884044518f82e9d974655b1e2d46645f19470 Mon Sep 17 00:00:00 2001
From: jrfnl <jrfnl@users.noreply.github.com>
Date: Sat, 21 Sep 2019 03:15:13 +0200
Subject: [PATCH] [tests] WpValidateBoolean: fix assertion

---
 tests/phpunit/tests/functions/WpValidateBoolean.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/phpunit/tests/functions/WpValidateBoolean.php b/tests/phpunit/tests/functions/WpValidateBoolean.php
index a9ec9ca2f3..833b731425 100644
--- a/tests/phpunit/tests/functions/WpValidateBoolean.php
+++ b/tests/phpunit/tests/functions/WpValidateBoolean.php
@@ -54,6 +54,6 @@ class Tests_Functions_WpValidateBoolean extends WP_UnitTestCase {
 	 * @ticket 39868
 	 */
 	public function test_wp_validate_boolean( $test_value, $expected ) {
-		$this->assertEquals( wp_validate_boolean( $test_value ), $expected );
+		$this->assertSame( wp_validate_boolean( $test_value ), $expected );
 	}
 }
-- 
2.23.0.windows.1

