Skip to content

Commit 9560acf

Browse files
committed
Fix cargo_metadata update
1 parent ce828b9 commit 9560acf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/local.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ fn builds_local_registry() {
3131
let lock = tame_index::utils::flock::FileLock::unlocked();
3232

3333
for pkg in &md.packages {
34-
if pkg.name == "tame-index" {
34+
if pkg.name.as_ref() == "tame-index" {
3535
continue;
3636
}
3737
let ip = krates.entry(pkg.name.clone()).or_insert_with(|| {

0 commit comments

Comments
 (0)