Skip to content

Commit 7bec660

Browse files
committed
Fix Test
1 parent b988f5c commit 7bec660

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1885,9 +1885,9 @@ impl From<Error> for std::io::Error {
18851885
#[cfg(test)]
18861886
mod tests {
18871887
use super::*;
1888-
use crate::buffered::BufWriter;
1888+
18891889
use chrono::TimeZone;
1890-
use tokio::io::AsyncWriteExt;
1890+
18911891

18921892
macro_rules! maybe_skip_integration {
18931893
() => {
@@ -1897,7 +1897,7 @@ mod tests {
18971897
}
18981898
};
18991899
}
1900-
pub(crate) use maybe_skip_integration;
1900+
19011901

19021902
/// Test that the returned stream does not borrow the lifetime of Path
19031903
fn list_store<'a>(
@@ -2155,12 +2155,12 @@ mod tests {
21552155
assert_eq!(options.extensions.get::<&str>(), extensions.get::<&str>());
21562156
}
21572157

2158-
fn takes_generic_object_store<T: ObjectStoreExt>(store: T) {
2158+
fn takes_generic_object_store<T: ObjectStore>(store: T) {
21592159
// This function is just to ensure that the trait bounds are satisfied
21602160
let _ = store;
21612161
}
21622162
#[test]
2163-
fn test_dyn_generic_impl() {
2163+
fn test_dyn_impl() {
21642164
let store: Arc<dyn ObjectStore> = Arc::new(memory::InMemory::new());
21652165
takes_generic_object_store(store);
21662166
let store: Box<dyn ObjectStore> = Box::new(memory::InMemory::new());

0 commit comments

Comments
 (0)