Merge 0.10->trunk
[prosody.git] / tests / test_sasl.lua
index 8bd1a2ff8fda8fcc2b78edd3f79a2cd947fcd631..dd63c5a00ec403dab610f31d4676ef803bcbcdae 100644 (file)
@@ -1,18 +1,11 @@
 -- Prosody IM
 -- Copyright (C) 2008-2010 Matthew Wild
 -- Copyright (C) 2008-2010 Waqas Hussain
--- 
+--
 -- This project is MIT/X11 licensed. Please see the
 -- 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;
@@ -37,9 +30,9 @@ function latin1toutf8()
        local function assert_utf8(latin, utf8)
                        assert_equal(_latin1toutf8(latin), utf8, "Incorrect UTF8 from Latin1: "..tostring(latin));
        end
-       
+
        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