# HG changeset patch # User Matthew Wild # Date 1298409540 0 # Node ID bbfbdbc5e77edbe1dac8baa8d017031585ac3570 # Parent af720a91aa198559737196692aabbda3d0719741 tests/test_sasl.lua: Convert literal UTF-8/Latin1 chars to escape codes for weak text editors diff -r af720a91aa19 -r bbfbdbc5e77e tests/test_sasl.lua --- a/tests/test_sasl.lua Wed Feb 23 02:16:19 2011 +0500 +++ b/tests/test_sasl.lua Tue Feb 22 21:19:00 2011 +0000 @@ -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 @@ 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