diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-02-22 21:19:00 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-02-22 21:19:00 +0000 |
commit | aded42ab978d3cf76e638fbf69ad2c332c4cefe9 (patch) | |
tree | a201ed7ae2e143a5d09cb1fed3614e92d853a36d /tests/test_sasl.lua | |
parent | 0a2b87128fab3220d4d257692287df12fb040df2 (diff) | |
download | prosody-aded42ab978d3cf76e638fbf69ad2c332c4cefe9.tar.gz prosody-aded42ab978d3cf76e638fbf69ad2c332c4cefe9.zip |
tests/test_sasl.lua: Convert literal UTF-8/Latin1 chars to escape codes for weak text editors
Diffstat (limited to 'tests/test_sasl.lua')
-rw-r--r-- | tests/test_sasl.lua | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/test_sasl.lua b/tests/test_sasl.lua index 8bd1a2ff..271fa69a 100644 --- a/tests/test_sasl.lua +++ b/tests/test_sasl.lua @@ -6,13 +6,6 @@ -- COPYING file in the source package for more information. -- - ---- WARNING! --- --- This file contains a mix of encodings below. --- Many editors will unquestioningly convert these for you. --- Please be careful :( (I recommend Scite) ---------------------------------- - local gmatch = string.gmatch; local t_concat, t_insert = table.concat, table.insert; local to_byte, to_char = string.byte, string.char; @@ -41,5 +34,5 @@ function latin1toutf8() assert_utf8("", "") assert_utf8("test", "test") assert_utf8(nil, nil) - assert_utf8("foobar.råkat.se", "foobar.rÃ¥kat.se") + assert_utf8("foobar.r\229kat.se", "foobar.r\195\165kat.se") end |