mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
http: replace escape() with escape_url()
This commit is contained in:
@@ -2,8 +2,8 @@ import http
|
||||
|
||||
fn test_escape_unescape() {
|
||||
original := 'те ст: т\\%'
|
||||
escaped := http.escape(original)
|
||||
escaped := http.escape_url(original)
|
||||
assert escaped == '%D1%82%D0%B5%20%D1%81%D1%82%3A%20%D1%82%5C%25'
|
||||
unescaped := http.unescape(escaped)
|
||||
unescaped := http.unescape_url(escaped)
|
||||
assert unescaped == original
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user