提交 09d8d390 编写于 作者: lizhongyi_'s avatar lizhongyi_

调整decodeURI测试例

(cherry picked from commit 7eec464a)
上级 c5a44091
...@@ -111,7 +111,7 @@ export function testGlobal() : Result { ...@@ -111,7 +111,7 @@ export function testGlobal() : Result {
expect(a3).toEqual("+=&123") expect(a3).toEqual("+=&123")
let a5 = encodeURI(":/?#[]@!$&'()*+,;=") let a5 = encodeURI(":/?#[]@!$&'()*+,;=")
expect(a5).toEqual(":/?#%5B%5D@!$&'()*+,;=") expect(a5).toEqual(":/?#%5B%5D@!$&'()*+,;=")
let b5 = decodeURI(a5!!) let b5 = decodeURI(a5!)
expect(b5).toEqual(":/?#[]@!$&'()*+,;=") expect(b5).toEqual(":/?#[]@!$&'()*+,;=")
// #END // #END
}) })
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册