Skip to content

Commit b00a8a6

Browse files
committed
Fix tests
1 parent 133286e commit b00a8a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/call-cabal-project-to-nix.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ in let
151151
let
152152
suitable-index-states =
153153
builtins.filter
154-
(s: s >= index-state-max) # This compare is why we need zulu time
154+
(s: s > index-state-max) # This compare is why we need zulu time
155155
(builtins.attrNames index-state-hashes);
156156
in
157157
if builtins.length suitable-index-states == 0

0 commit comments

Comments
 (0)