mirror of
https://github.com/FluuxIO/go-xmpp.git
synced 2024-11-21 01:52:01 -08:00
Priority is an int
This commit is contained in:
parent
923fd61587
commit
5d362b505b
@ -10,7 +10,7 @@ type Presence struct {
|
||||
PacketAttrs
|
||||
Show string `xml:"show,omitempty"` // away, chat, dnd, xa
|
||||
Status string `xml:"status,omitempty"`
|
||||
Priority string `xml:"priority,omitempty"`
|
||||
Priority int `xml:"priority,omitempty"`
|
||||
Error Err `xml:"error,omitempty"`
|
||||
}
|
||||
|
||||
|
@ -34,13 +34,13 @@ func TestPresenceSubElt(t *testing.T) {
|
||||
type pres struct {
|
||||
Show string `xml:"show"`
|
||||
Status string `xml:"status"`
|
||||
Priority string `xml:"priority"`
|
||||
Priority int `xml:"priority"`
|
||||
}
|
||||
|
||||
presence := xmpp.NewPresence("admin@localhost", "test@localhost", "1", "en")
|
||||
presence.Show = "xa"
|
||||
presence.Status = "Coding"
|
||||
presence.Priority = "10"
|
||||
presence.Priority = 10
|
||||
|
||||
data, err := xml.Marshal(presence)
|
||||
if err != nil {
|
||||
@ -59,6 +59,6 @@ func TestPresenceSubElt(t *testing.T) {
|
||||
t.Errorf("cannot read 'status' as presence subelement (%s)", parsedPresence.Status)
|
||||
}
|
||||
if parsedPresence.Priority != presence.Priority {
|
||||
t.Errorf("cannot read 'priority' as presence subelement (%s)", parsedPresence.Priority)
|
||||
t.Errorf("cannot read 'priority' as presence subelement (%d)", parsedPresence.Priority)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user