Skip to content

Commit 8c97351

Browse files
author
Pierre BAILLET
committed
Linting works, are tests failing?
1 parent b227970 commit 8c97351

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/fsevent.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ fn internal_validate_watch_single_file(run_async: bool) {
233233
file.write_all(b"create").unwrap();
234234
file.flush().unwrap();
235235
drop(file);
236-
236+
237237
// Wait a bit then modify
238238
thread::sleep(Duration::from_millis(100));
239239
let mut file = OpenOptions::new()
@@ -251,7 +251,10 @@ fn internal_validate_watch_single_file(run_async: bool) {
251251
receiver,
252252
vec![(
253253
dst.to_str().unwrap().to_string(),
254-
StreamFlags::ITEM_MODIFIED | StreamFlags::ITEM_CREATED | StreamFlags::ITEM_XATTR_MOD | StreamFlags::IS_FILE,
254+
StreamFlags::ITEM_MODIFIED
255+
| StreamFlags::ITEM_CREATED
256+
| StreamFlags::ITEM_XATTR_MOD
257+
| StreamFlags::IS_FILE,
255258
)],
256259
);
257260

0 commit comments

Comments
 (0)