Skip to content

Commit 1ae79f8

Browse files
committed
fmt fix
1 parent 12f2060 commit 1ae79f8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/iceberg/src/io/file_io.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -538,11 +538,11 @@ mod tests {
538538
use tempfile::TempDir;
539539

540540
use super::{FileIO, FileIOBuilder};
541-
use crate::{Error, ErrorKind, Result};
542541
use crate::io::{
543542
Extensions, FileMetadata, FileRead, FileWrite, InputFile, OutputFile,
544543
STORAGE_LOCATION_SCHEME, Storage, StorageBuilder, StorageBuilderRegistry,
545544
};
545+
use crate::{Error, ErrorKind, Result};
546546

547547
// Test storage implementation that tracks write operations
548548
#[derive(Debug, Clone)]
@@ -793,7 +793,7 @@ mod tests {
793793
written: Arc::new(Mutex::new(Vec::new())),
794794
received_props: Arc::new(Mutex::new(HashMap::new())),
795795
});
796-
796+
797797
let mut registry = StorageBuilderRegistry::new();
798798
registry.register("test", builder.clone());
799799

@@ -815,7 +815,7 @@ mod tests {
815815
written: Arc::new(Mutex::new(Vec::new())),
816816
received_props: Arc::new(Mutex::new(HashMap::new())),
817817
});
818-
818+
819819
let mut registry = StorageBuilderRegistry::new();
820820
registry.register("test", builder.clone());
821821

@@ -849,7 +849,7 @@ mod tests {
849849
written: Arc::new(Mutex::new(Vec::new())),
850850
received_props: Arc::new(Mutex::new(HashMap::new())),
851851
});
852-
852+
853853
let mut registry = StorageBuilderRegistry::new();
854854
registry.register("myscheme", builder.clone());
855855

0 commit comments

Comments
 (0)