fix typo in test_wc_rest_urlencode_rfc3986

This commit is contained in:
Leif Singer 2023-11-07 21:40:31 +01:00
parent eb5a8a65f8
commit 351d7f458b
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ class WC_Tests_API_Functions extends WC_Unit_Test_Case {
* @since 2.6.0 * @since 2.6.0
*/ */
public function test_wc_rest_urlencode_rfc3986() { public function test_wc_rest_urlencode_rfc3986() {
$this->assertEquals( 'https%3A%2F%woo.com%2F', wc_rest_urlencode_rfc3986( 'https://woo.com/' ) ); $this->assertEquals( 'https%3A%2F%2Fwoo.com%2F', wc_rest_urlencode_rfc3986( 'https://woo.com/' ) );
} }
/** /**