diff options
author | regnat <rg@regnat.ovh> | 2022-03-15 21:05:01 +0100 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2022-03-15 21:05:01 +0100 |
commit | 2d5c43f210694033eb0d1ddfb0131e18a159b790 (patch) | |
tree | e5297113a6969d57ded8d55f760b5e4124c125a7 /tests/fetchPath.sh | |
parent | ba9e69cdcd8022f37e344f2c86e60ee2b9da493f (diff) |
Fix the tests on 32bits machines
year 2222 is too much for a 32 bit timestamp. So replace it by something
smaller
Diffstat (limited to 'tests/fetchPath.sh')
-rw-r--r-- | tests/fetchPath.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fetchPath.sh b/tests/fetchPath.sh index 0cfdf68cf..0e065cae2 100644 --- a/tests/fetchPath.sh +++ b/tests/fetchPath.sh @@ -1,6 +1,6 @@ source common.sh -touch foo -t 222211111111 +touch foo -t 202211111111 # We only check whether 2222-11-1* **:**:** is the last modified date since # `lastModified` is transformed into UTC in `builtins.fetchTarball`. -[[ "$(nix eval --impure --raw --expr "(builtins.fetchTree \"path://$PWD/foo\").lastModifiedDate")" =~ 2222111.* ]] +[[ "$(nix eval --impure --raw --expr "(builtins.fetchTree \"path://$PWD/foo\").lastModifiedDate")" =~ 2022111.* ]] |