Fix outdated test case

This commit is contained in:
Luc Perkins 2024-01-12 21:46:23 -03:00
parent 55386dcfd9
commit dc881e5af7
No known key found for this signature in database
GPG Key ID: 16DB1108FB591835
2 changed files with 5 additions and 2 deletions

View File

@ -162,7 +162,10 @@ mod test {
};
let issues = check_flake_lock(&flake_lock, &config)
.unwrap_or_else(|_| panic!("couldn't run check_flake_lock function in {path:?}"));
assert!(issues.is_empty());
assert!(
issues.is_empty(),
"expected clean flake.lock in tests/flake.clean.{n}.lock but encountered an issue"
);
}
}

View File

@ -52,7 +52,7 @@
},
"original": {
"owner": "nixos",
"ref": "nixos-23.05",
"ref": "nixos-23.11",
"repo": "nixpkgs",
"type": "github"
}