Make WordPress Core


Ignore:
Timestamp:
07/09/2015 08:55:26 PM (10 years ago)
Author:
wonderboymusic
Message:

Revert [32851] and [32850] for now, tl;dr encoding issues.

See #17780.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/formatting/JSEscape.php

    r32850 r33148  
    2424
    2525    function test_js_escape_amp() {
    26         $out = esc_js('foo & bar &baz;  ');
    27         $this->assertEquals("foo & bar &baz;  ", $out);
     26        $out = esc_js('foo & bar &baz; '');
     27        $this->assertEquals("foo & bar &baz; '", $out);
    2828    }
    2929
    3030    function test_js_escape_quote_entity() {
    3131        $out = esc_js('foo ' bar ' baz &');
    32         $this->assertEquals("foo \\' bar \\' baz &", $out);
     32        $this->assertEquals("foo \\' bar \\' baz &", $out);
    3333    }
    3434
Note: See TracChangeset for help on using the changeset viewer.