Skip to content

Commit 50f2a27

Browse files
committed
lint
1 parent 660fa42 commit 50f2a27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

icechunk/src/repository.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1354,7 +1354,8 @@ mod tests {
13541354
.await
13551355
.unwrap()
13561356
.unwrap();
1357-
let expected = Bytes::copy_from_slice(format!("{0}", idx + offset).as_bytes());
1357+
let expected =
1358+
Bytes::copy_from_slice(format!("{0}", idx + offset).as_bytes());
13581359
assert_eq!(actual, expected);
13591360
}
13601361
};
@@ -1408,7 +1409,7 @@ mod tests {
14081409
.set_chunk_ref(
14091410
array_path.clone(),
14101411
ChunkIndices(vec![i, 0, 0]),
1411-
Some(ChunkPayload::Inline(format!("{0}", i+10).into())),
1412+
Some(ChunkPayload::Inline(format!("{0}", i + 10).into())),
14121413
)
14131414
.await?
14141415
}

icechunk/src/session.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1846,7 +1846,6 @@ impl ManifestSplittingConfig {
18461846
} in dim_specs.iter()
18471847
{
18481848
if dim_condition.matches(axis, dimname.clone().into()) {
1849-
dbg!(&dim_condition, "matched", &dimname);
18501849
edges[axis] = uniform_manifest_split_edges(
18511850
num_chunks[axis],
18521851
split_size,

0 commit comments

Comments
 (0)