From c4c5bcd2b250808e9465d5a403b6749042d077b1 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Wed, 19 Apr 2023 10:24:31 +0800 Subject: vim-patch:9.0.0372: MS-Windows: "%T" time format does not appear to work Problem: MS-Windows: "%T" time format does not appear to work. Solution: Use "%H:%M:%S" instead. https://github.com/vim/vim/commit/5fbbec180b623cd6ebfc9528be6fa70b4cf664d4 Co-authored-by: Bram Moolenaar --- test/old/testdir/shared.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/old/testdir/shared.vim') diff --git a/test/old/testdir/shared.vim b/test/old/testdir/shared.vim index 70a3ab7eee..35ff434d40 100644 --- a/test/old/testdir/shared.vim +++ b/test/old/testdir/shared.vim @@ -113,7 +113,7 @@ func RunServer(cmd, testfunc, args) " Wait for some time for the port number to be there. let port = GetPort() if port == 0 - call assert_report(strftime("%T") .. " Can't start " .. a:cmd) + call assert_report(strftime("%H:%M:%S") .. " Can't start " .. a:cmd) return endif -- cgit