Commit b80cb24a authored by Willy's avatar Willy
Browse files

nixos/tests/xmpp: fix after xmpp >= 1.9

`ClientXMPP.process` is gone but trivial to diy in our case.

see https://slixmpp.readthedocs.io/en/latest/howto/remove_process.html
parent 8e166f7a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ writeScriptBin "send-message" ''
      # MUC
      ct.register_plugin('xep_0045')
      ct.connect(("${connectTo}", 5222))
      ct.process(forever=False)
      ct.loop.run_until_complete(ct.disconnected)

      if not ct.test_succeeded:
          sys.exit(1)