1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test: check for UV_CHANGE or UV_RENAME event

All other checks for `UV_RENAME` in `test-fs-event` also allow
`UV_CHANGE`.
This commit is contained in:
Richard Lau 2024-08-07 12:30:42 +00:00
parent 88ab6e78da
commit c84a2dbe03

View File

@ -152,7 +152,7 @@ static void fs_event_cb_del_dir(uv_fs_event_t* handle,
++fs_event_cb_called;
ASSERT_PTR_EQ(handle, &fs_event);
ASSERT_OK(status);
ASSERT_EQ(events, UV_RENAME);
ASSERT(events == UV_CHANGE || events == UV_RENAME);
ASSERT_OK(strcmp(filename, "watch_del_dir"));
ASSERT_OK(uv_fs_event_stop(handle));
uv_close((uv_handle_t*)handle, close_cb);