diff options
author | F. Jason Park <jp@neverwas.me> | 2023-11-25 14:26:24 -0800 |
---|---|---|
committer | F. Jason Park <jp@neverwas.me> | 2023-11-25 15:59:58 -0800 |
commit | d2ce30afdd22291eeeaea7f3566bb7bd6bb14dda (patch) | |
tree | 7186d9eace152a2dc26a6e3c14be1c0fc7902094 /test/lisp/erc/erc-scenarios-auth-source.el | |
parent | 0a6d0a4959ae1d4ad70563fbf9e57f5543cf49f7 (diff) | |
download | emacs-d2ce30afdd22291eeeaea7f3566bb7bd6bb14dda.tar.gz emacs-d2ce30afdd22291eeeaea7f3566bb7bd6bb14dda.tar.bz2 emacs-d2ce30afdd22291eeeaea7f3566bb7bd6bb14dda.zip |
; Mark test for erc--update-channel-modes as :unstable
* test/lisp/erc/erc-scenarios-auth-source.el
(erc-scenarios-common--auth-source): Extend timeout.
* test/lisp/erc/erc-scenarios-base-buffer-display.el
(erc-scenarios-base-buffer-display--count-reset-timeout): Await
initial condition.
* test/lisp/erc/erc-scenarios-base-renick.el
(erc-scenarios-base-renick-queries-solo): Extend timeout.
* test/lisp/erc/erc-scenarios-misc.el (erc-scenarios-base-flood):
Extend timeout.
* test/lisp/erc/erc-tests.el (erc--channel-modes): Mark test as
:unstable pending further investigation. This test has been shown to
be unreliable, possibly because it expects Emacs to report characters
being a certain width in all environments. Thanks to Mattias
EngdegÄrd for reporting this failure.
* test/lisp/erc/resources/base/reuse-buffers/server/barnet.eld:
Extend timeouts.
* test/lisp/erc/resources/base/reuse-buffers/server/foonet.eld:
Extend timeouts.
Diffstat (limited to 'test/lisp/erc/erc-scenarios-auth-source.el')
-rw-r--r-- | test/lisp/erc/erc-scenarios-auth-source.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/erc/erc-scenarios-auth-source.el b/test/lisp/erc/erc-scenarios-auth-source.el index 641b881666e..7eaf90e1e41 100644 --- a/test/lisp/erc/erc-scenarios-auth-source.el +++ b/test/lisp/erc/erc-scenarios-auth-source.el @@ -56,7 +56,7 @@ (should (string= (buffer-name) (if id (symbol-name id) (format "127.0.0.1:%d" port)))) - (erc-d-t-wait-for 5 (eq erc-network 'FooNet)))))) + (erc-d-t-wait-for 10 (eq erc-network 'FooNet)))))) (ert-deftest erc-scenarios-base-auth-source-server--dialed () :tags '(:expensive-test) |