Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Fs event tests: don't fail if a previously failed test left stray files
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Mar 27, 2012
1 parent 7e8fe3e commit 89303f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-fs-event.c
Expand Up @@ -36,7 +36,7 @@ static void create_dir(uv_loop_t* loop, const char* name) {
int r;
uv_fs_t req;
r = uv_fs_mkdir(loop, &req, name, 0755, NULL);
ASSERT(r == 0);
ASSERT(r == 0 || uv_last_error(loop).code == UV_EEXIST);
uv_fs_req_cleanup(&req);
}

Expand Down

0 comments on commit 89303f3

Please sign in to comment.