Skip to content

Commit 7c631ff

Browse files
committed
Use exact dependency version in temp_package
1 parent da60a0e commit 7c631ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub fn temp_package<'a, 'b>(
7272
.open(tempdir.path().join("Cargo.toml"))?;
7373
writeln!(file, "\n[dependencies]")?;
7474
for (name, version) in iter {
75-
writeln!(file, r#"{name} = "{version}""#)?;
75+
writeln!(file, r#"{name} = "={version}""#)?;
7676
}
7777
}
7878

0 commit comments

Comments
 (0)