diff options
| author | RblSb <msrblsb@gmail.com> | 2025-03-02 10:09:26 +0300 |
|---|---|---|
| committer | RblSb <msrblsb@gmail.com> | 2025-03-03 00:51:38 +0300 |
| commit | aed0d8ed6865a3e966fa866af4b99f5d4b4d33eb (patch) | |
| tree | c6c0274dc824f15855af4534747e5d36433e42a0 /test/tests/TestServer.hx | |
| parent | 3b22ce9b59e1e549dddbba99b90b87a1dc1fcf87 (diff) | |
Improve upload filename encoding
Diffstat (limited to 'test/tests/TestServer.hx')
| -rw-r--r-- | test/tests/TestServer.hx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests/TestServer.hx b/test/tests/TestServer.hx index b02bb90..f9074b3 100644 --- a/test/tests/TestServer.hx +++ b/test/tests/TestServer.hx @@ -22,7 +22,7 @@ class TestServer extends Test { server.onServerInited = () -> { final url = 'http://${server.localIp}:${server.port}'; request('$url/你好,世界!@$^&*)_+-=', data -> { - Assert.equals("File 你好,世界!@$^&*)_ -= not found.", data); + Assert.equals("File 你好,世界!@$^&*)_+-= not found.", data); }); request('$url/Привет%00мир!', data -> { Assert.equals("File Приветмир! not found.", data); |
