diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-01-16 18:38:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-16 18:38:20 -0500 |
commit | 7ebb1cf28f41d073062a4d454b5613d31e5d7518 (patch) | |
tree | 417e251a93a9715324d00cd30a5d75db834a1130 /test/functional/core/startup_spec.lua | |
parent | da3460562e84dcf608248cc9a5b0eb2341531a0d (diff) | |
parent | 665a7dafaf892b31285f35a43a90fc6e968fd7da (diff) | |
download | rneovim-7ebb1cf28f41d073062a4d454b5613d31e5d7518.tar.gz rneovim-7ebb1cf28f41d073062a4d454b5613d31e5d7518.tar.bz2 rneovim-7ebb1cf28f41d073062a4d454b5613d31e5d7518.zip |
Merge #21844 test: avoid noise in test logs
Diffstat (limited to 'test/functional/core/startup_spec.lua')
-rw-r--r-- | test/functional/core/startup_spec.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/functional/core/startup_spec.lua b/test/functional/core/startup_spec.lua index 9dabcd28b3..1be5de6488 100644 --- a/test/functional/core/startup_spec.lua +++ b/test/functional/core/startup_spec.lua @@ -43,10 +43,8 @@ describe('startup', function() it('--startuptime', function() clear({ args = {'--startuptime', testfile}}) - retry(nil, 1000, function() - assert_log('sourcing', testfile, 100) - assert_log("require%('vim%._editor'%)", testfile, 100) - end) + assert_log('sourcing', testfile, 100) + assert_log("require%('vim%._editor'%)", testfile, 100) end) it('-D does not hang #12647', function() |