Skip to content

Commit

Permalink
tests: forgot extents template placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
gauteh committed Nov 18, 2023
1 parent eb243e6 commit 164178c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/idx/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,18 +269,18 @@ mod tests {
let idx = Index::index(path).unwrap();
assert_eq!(idx.datasets().len(), 1);
assert_eq!(
idx.reader("x").unwrap().values::<f64>(..).unwrap(),
idx.reader("x").unwrap().values::<f64, _>(..).unwrap(),
vec![1.0]
);
assert_eq!(idx.groups().len(), 1);
assert_eq!(idx.group("a").unwrap().groups().len(), 1);
assert_eq!(idx.group("a/b").unwrap().groups().len(), 1);
assert_eq!(
idx.reader("a/b/x").unwrap().values::<f64>(..).unwrap(),
idx.reader("a/b/x").unwrap().values::<f64, _>(..).unwrap(),
vec![1.0]
);
assert_eq!(
idx.reader("a/b/c/x").unwrap().values::<f64>(..).unwrap(),
idx.reader("a/b/c/x").unwrap().values::<f64, _>(..).unwrap(),
vec![1.0]
);
}
Expand Down

0 comments on commit 164178c

Please sign in to comment.