Skip to content
This repository has been archived by the owner on Jun 27, 2021. It is now read-only.

Commit

Permalink
Fix std::fs::read_dir test expectations
Browse files Browse the repository at this point in the history
The std::fs::read_dir test has the wrong expectations after a new
fixture was added to the fixtures directory.

This corrects that.
  • Loading branch information
caspervonb committed Oct 22, 2020
1 parent a9c7049 commit aba7e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/std_fs_read_dir.rs
Expand Up @@ -6,7 +6,7 @@

fn main() {
let entries = std::fs::read_dir("fixtures").unwrap();
assert_eq!(entries.count(), 4);
assert_eq!(entries.count(), 5);

let entries = std::fs::read_dir("fixtures/directory").unwrap();
assert_eq!(entries.count(), 2);
Expand Down

0 comments on commit aba7e66

Please sign in to comment.