# HG changeset patch # User Goffi # Date 1605189195 -3600 # Node ID 467d6c709f1dfa0ebd751d8de13d4b3e729abebd # Parent c069882f64cb3b9a5f0f040c0a632e0e054db1be test: fixed use of `client.host` in legacy test: those tests are not maintained anymore, but as the use of `client.host` as been fixed elsewhere, it was the occasion to do it there too. Those legacy tests should be ported or to the new workflow, or deleted if they are not relevant anymore. diff -r c069882f64cb -r 467d6c709f1d sat/test/test_core_xmpp.py --- a/sat/test/test_core_xmpp.py Thu Nov 12 14:53:15 2020 +0100 +++ b/sat/test/test_core_xmpp.py Thu Nov 12 14:53:15 2020 +0100 @@ -35,7 +35,7 @@ def test_init(self): """Check that init values are correctly initialised""" self.assertEqual(self.client.profile, Const.PROFILE[0]) - print(self.client.host) + print(self.client.jid.host) self.assertEqual(self.client.host_app, self.host)