From dc35c8d11e10cbcb92418ead804e80666294d511 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 12 Sep 2013 04:28:34 +0000 Subject: [PATCH] Pass a variable that actually exists to `seems_utf8()` in `tests/formatting/SeemsUtf8.php` See #25282. git-svn-id: https://develop.svn.wordpress.org/trunk@25379 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/formatting/SeemsUtf8.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/formatting/SeemsUtf8.php b/tests/phpunit/tests/formatting/SeemsUtf8.php index d557295c3d..c9fc26fbbd 100644 --- a/tests/phpunit/tests/formatting/SeemsUtf8.php +++ b/tests/phpunit/tests/formatting/SeemsUtf8.php @@ -12,7 +12,7 @@ class Tests_Formatting_SeemsUtf8 extends WP_UnitTestCase { */ function test_returns_true_for_utf8_strings( $utf8_string ) { // from http://www.i18nguy.com/unicode-example.html - $this->assertTrue( seems_utf8( $string ) ); + $this->assertTrue( seems_utf8( $utf8_string ) ); } function utf8_strings() {