Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
flaneur2020 committed Dec 20, 2024
1 parent 98c47be commit 120a5e4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/catalog/s3tables/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ mod tests {
};

let namespaces = catalog.list_namespaces(None).await.unwrap();
assert!(namespaces.len() > 0);
assert!(!namespaces.is_empty());
}

#[tokio::test]
Expand All @@ -539,8 +539,7 @@ mod tests {
.list_tables(&NamespaceIdent::new("aws_s3_metadata".to_string()))
.await
.unwrap();
println!("{:?}", tables);
assert!(tables.len() > 0);
assert!(!tables.is_empty());
}

#[tokio::test]
Expand Down

0 comments on commit 120a5e4

Please sign in to comment.