diff options
author | 2021-03-18 01:33:39 -0600 | |
---|---|---|
committer | 2021-03-18 01:37:16 -0600 | |
commit | 95ff473bc77e5ba31c90c5e1906e9083e1d96d71 (patch) | |
tree | 30e878ba3d11c88e8be2f0da0a419d2f2c3692a2 /tests/checks | |
parent | checks.git: pull eclasses from repo masters (diff) | |
download | pkgcheck-95ff473bc77e5ba31c90c5e1906e9083e1d96d71.tar.gz pkgcheck-95ff473bc77e5ba31c90c5e1906e9083e1d96d71.tar.bz2 pkgcheck-95ff473bc77e5ba31c90c5e1906e9083e1d96d71.zip |
GitAddon: store commit timestamp instead of date string
Diffstat (limited to 'tests/checks')
-rw-r--r-- | tests/checks/test_git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checks/test_git.py b/tests/checks/test_git.py index 728c84e2..f396ea74 100644 --- a/tests/checks/test_git.py +++ b/tests/checks/test_git.py @@ -22,7 +22,7 @@ class FakeCommit(GitCommit): def __init__(self, **kwargs): commit_data = { 'hash': '7f9abd7ec2d079b1d0c36fc2f5d626ae0691757e', - 'commit_date': 'Sun Dec 8 02:13:58 2019 -0700', + 'commit_time': 1613438722, 'author': 'author@domain.com', 'committer': 'author@domain.com', 'message': (), |