Skip to content

Commit

Permalink
Fix mem-test not using new API
Browse files Browse the repository at this point in the history
  • Loading branch information
magnusuMET committed Jan 10, 2024
1 parent 7e2b6b3 commit 60b5e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netcdf/tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ fn read_from_memory() {
(*file)
.variable("data")
.expect("Could not find variable")
.values_to(&mut v, ..)
.get_values_into(&mut v, ..)
.unwrap();
for (i, v) in v.iter().enumerate() {
assert_eq!(*v, i as _);
Expand Down

0 comments on commit 60b5e10

Please sign in to comment.