diff -r 8f6ae5cfc9b9 -r d6b7b4cbf50d structs_test.go --- a/structs_test.go Wed Dec 28 13:05:59 2011 -0700 +++ b/structs_test.go Wed Dec 28 13:14:46 2011 -0700 @@ -50,18 +50,18 @@ } func TestStreamMarshal(t *testing.T) { - s := &Stream{To: "bob"} + s := &stream{To: "bob"} exp := `` assertMarshal(t, exp, s) - s = &Stream{To: "bob", From: "alice", Id: "#3", Version: "5.3"} + s = &stream{To: "bob", From: "alice", Id: "#3", Version: "5.3"} exp = `` assertMarshal(t, exp, s) - s = &Stream{Lang: "en_US"} + s = &stream{Lang: "en_US"} exp = `` assertMarshal(t, exp, s)