diff options
| author | 2021-08-12 14:38:44 +0200 | |
|---|---|---|
| committer | 2021-08-12 14:38:44 +0200 | |
| commit | b166ccf3e1547f90a00a11a379eb3742b9e4ba6c (patch) | |
| tree | 4bfacd69ecd67cc3ba647a8ed580e13039f7db63 | |
| parent | Revert "Comment out set::sasl-server to test SASL server autodetection" (diff) | |
| download | unrealircd-tests-master.tar.gz unrealircd-tests-master.tar.bz2 unrealircd-tests-master.zip | |
Reorder some result checking to fix spurious errors master
| -rwxr-xr-x | tests/opercommands/sajoin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/opercommands/sajoin b/tests/opercommands/sajoin index 177ee49..ef09476 100755 --- a/tests/opercommands/sajoin +++ b/tests/opercommands/sajoin @@ -20,8 +20,8 @@ print m.send(c1a, "OPER netadmin test") m.send(c1a, "SAJOIN $c3a " + chan) -m.expect(c3a, "See that you are forced joined", ":irc.+ NOTICE $me :\*\*\* You were forced to join " + chan) m.expect_all("See c3a joining", ":c3a.*JOIN", timeout = 5) +m.expect(c3a, "See that you are forced joined", ":irc.+ NOTICE $me :\*\*\* You were forced to join " + chan) m.clearlog() print @@ -30,7 +30,7 @@ print m.sync = 0 m.send(c1a, "SAJOIN $c3a 0") -m.expect(c3a, "See that you are forced to part all channels", ":irc.+ NOTICE $me :\*\*\* You were forced to join 0", timeout = 5) m.expect_all("See c3a leaving", ":c3a.*PART", timeout = 5) +m.expect(c3a, "See that you are forced to part all channels", ":irc.+ NOTICE $me :\*\*\* You were forced to join 0", timeout = 5) m.clearlog() print |
