summaryrefslogtreecommitdiffstats
path: root/src/testdir/shared.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-03 22:08:11 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-03 22:08:11 +0100
commit5fbbec180b623cd6ebfc9528be6fa70b4cf664d4 (patch)
treee63ce17a9ba4c161cfd277d82d0db7c36bcb9fd7 /src/testdir/shared.vim
parent06fef1b2bdc07c6170b178e34b4712c21bd81a2e (diff)
patch 9.0.0372: MS-Windows: "%T" time format does not appear to workv9.0.0372
Problem: MS-Windows: "%T" time format does not appear to work. Solution: Use "%H:%M:%S" instead.
Diffstat (limited to 'src/testdir/shared.vim')
-rw-r--r--src/testdir/shared.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/shared.vim b/src/testdir/shared.vim
index 72cf8368cf..09d942f9a6 100644
--- a/src/testdir/shared.vim
+++ b/src/testdir/shared.vim
@@ -101,7 +101,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