Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
geetanshjuneja committed Dec 30, 2024
1 parent eb451db commit b6a8ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tests/behavior/async_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ pub async fn test_list_files_with_versioned(op: Operator) -> Result<()> {
op.write(file_path.as_str(), "1").await?;
op.write(file_path.as_str(), "2").await?;

let mut ds = op.list_with(parent.as_str()).version(true).await?;
let mut ds = op.list_with(parent.as_str()).versioned(true).await?;
ds.retain(|de| de.path() != parent.as_str());

assert_eq!(ds.len(), 2);
Expand Down

0 comments on commit b6a8ef0

Please sign in to comment.