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
This commit is contained in:
Scott Taylor 2013-09-12 04:28:34 +00:00
parent 7001aeaa11
commit dc35c8d11e
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class Tests_Formatting_SeemsUtf8 extends WP_UnitTestCase {
*/ */
function test_returns_true_for_utf8_strings( $utf8_string ) { function test_returns_true_for_utf8_strings( $utf8_string ) {
// from http://www.i18nguy.com/unicode-example.html // from http://www.i18nguy.com/unicode-example.html
$this->assertTrue( seems_utf8( $string ) ); $this->assertTrue( seems_utf8( $utf8_string ) );
} }
function utf8_strings() { function utf8_strings() {