Skip to content

Commit

Permalink
Fix unit test now that memory store block size changed
Browse files Browse the repository at this point in the history
  • Loading branch information
westonpace committed Jan 31, 2025
1 parent 865a2ac commit a3fdbe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/lance-io/src/object_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,6 @@ mod tests {
#[rstest]
#[case("s3://bucket/foo.lance", None)]
#[case("gs://bucket/foo.lance", None)]
#[case("memory:///bucket/foo.lance", None)]
#[case("az://account/bucket/foo.lance",
Some(HashMap::from([
(String::from("account_name"), String::from("account")),
Expand All @@ -1236,6 +1235,7 @@ mod tests {
#[rstest]
#[case("file")]
#[case("file-object-store")]
#[case("memory:///bucket/foo.lance")]
#[tokio::test]
async fn test_block_size_used_file(#[case] prefix: &str) {
let tmp_dir = tempfile::tempdir().unwrap();
Expand Down

0 comments on commit a3fdbe3

Please sign in to comment.