itests: do not compare strings, compare xml
This commit is contained in:
parent
d4e1b68534
commit
99c6fc923a
1 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,8 @@ class TestPrivateStorage(SlixIntegration):
|
||||||
el,
|
el,
|
||||||
)
|
)
|
||||||
result = await self.clients[0]['xep_0049'].retrieve('bookmarks')
|
result = await self.clients[0]['xep_0049'].retrieve('bookmarks')
|
||||||
self.assertEqual(str(result['private']['bookmarks']), str(el))
|
|
||||||
|
self.assertEqual(result['private']['bookmarks'], el)
|
||||||
|
|
||||||
# Purge bookmarks
|
# Purge bookmarks
|
||||||
await self.clients[0]['xep_0049'].store(
|
await self.clients[0]['xep_0049'].store(
|
||||||
|
|
Loading…
Reference in a new issue