diff -r bee6cc131798 -r a058e33c1666 xmpp_test.go --- a/xmpp_test.go Sun Dec 16 23:06:54 2012 -0700 +++ b/xmpp_test.go Fri Dec 28 17:07:20 2012 -0700 @@ -81,14 +81,14 @@ func TestWriteError(t *testing.T) { se := &streamError{Any: Generic{XMLName: xml.Name{Local: "blah"}}} str := testWrite(se) - exp := `` + exp := `` assertEquals(t, exp, str) se = &streamError{Any: Generic{XMLName: xml.Name{Space: NsStreams, Local: "foo"}}, Text: &errText{Lang: "ru", Text: "Пошёл ты"}} str = testWrite(se) - exp = `Пошёл ты` + `" xml:lang="ru">Пошёл ты` assertEquals(t, exp, str) }