diff options
author | Evan Mallory <schmave@gmail.com> | 2016-10-02 20:01:49 -0400 |
---|---|---|
committer | Evan Mallory <schmave@gmail.com> | 2016-10-02 20:02:24 -0400 |
commit | 94c0db01333e44fbdb1688bc431093c7bfeabc47 (patch) | |
tree | 35549156138cef80a9004b83294c5e4a66418c9a /test/regress/383.test | |
parent | cd58d43228996198b5ba329f7c05109f2aaee65a (diff) | |
download | fork-ledger-94c0db01333e44fbdb1688bc431093c7bfeabc47.tar.gz fork-ledger-94c0db01333e44fbdb1688bc431093c7bfeabc47.tar.bz2 fork-ledger-94c0db01333e44fbdb1688bc431093c7bfeabc47.zip |
Fix regress test 383 on Windows
%g is not available in Windows strftime. See documentation at https://msdn.microsoft.com/en-us/library/fe06s4ak.aspx
Diffstat (limited to 'test/regress/383.test')
-rw-r--r-- | test/regress/383.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regress/383.test b/test/regress/383.test index ab4372fd..019c91eb 100644 --- a/test/regress/383.test +++ b/test/regress/383.test @@ -23,7 +23,7 @@ test bal Assets:Investments --lots --date-format %Y-%m-%d 100 AA {2.00 GBP} [2014-01-01] Assets:Investments end test -test bal Assets:Investments --lots --date-format %g-%b-%d +test bal Assets:Investments --lots --date-format %y-%b-%d 100 AA {2.00 GBP} [14-Jan-01] Assets:Investments end test |