Fix path of test flake.lock in CI

This commit is contained in:
Luc Perkins 2024-07-01 14:55:38 -07:00
parent 8e7089c7ce
commit f8abcfa1ca
No known key found for this signature in database
GPG Key ID: 16DB1108FB591835
3 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ jobs:
nix develop -c \
cargo run -- \
--condition "supportedRefs.contains(gitRef) && numDaysOld < 30 && owner == 'NixOS'" \
./tests/flake.cel.clean.0.lock
./tests/flake.cel.0.lock
check-flake-dirty:
name: Check flake.lock test (dirty 😈)

View File

@ -172,7 +172,7 @@ mod test {
let supported_refs: Vec<String> =
serde_json::from_str(include_str!("../allowed-refs.json")).unwrap();
let path = PathBuf::from("tests/flake.cel.lock");
let path = PathBuf::from("tests/flake.cel.0.lock");
for (condition, expected) in cases {
let flake_lock = FlakeLock::new(&path).unwrap();