From 1c45ba462b7ca0135336d2d1eed52c362779dd42 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Tue, 2 Jul 2019 19:31:36 +0200 Subject: tests: fix flaky "terminal (with fake shell) with not arguments …" (#10401) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `retry()` would only try it three times (waiting for 20ms in between), despite the large timeout. Fixes https://github.com/neovim/neovim/issues/10265. --- test/functional/terminal/ex_terminal_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/terminal/ex_terminal_spec.lua') diff --git a/test/functional/terminal/ex_terminal_spec.lua b/test/functional/terminal/ex_terminal_spec.lua index f3849709e3..2c731066bd 100644 --- a/test/functional/terminal/ex_terminal_spec.lua +++ b/test/functional/terminal/ex_terminal_spec.lua @@ -137,7 +137,7 @@ describe(':terminal (with fake shell)', function() it('with no argument, acts like termopen()', function() terminal_with_fake_shell() - retry(3, 4 * screen.timeout, function() + retry(nil, 4 * screen.timeout, function() screen:expect([[ ^ready $ | [Process exited 0] | -- cgit