Fix test for MSRV

This commit is contained in:
Ashley Anderson 2022-01-11 15:39:19 -05:00
parent 14bd6282ad
commit 161d79fae3
1 changed files with 1 additions and 1 deletions

View File

@ -1940,7 +1940,7 @@ mod tests {
let out = interpreter
.run_python_script_with_envs(
"import os; print(os.getenv('PYO3_TEST'))",
[("PYO3_TEST", "42")],
vec![("PYO3_TEST", "42")],
)
.expect("failed to run Python script");
assert_eq!(out.trim_end(), "42");