diff options
Diffstat (limited to 'test/test-fs-copyfile.c')
-rw-r--r-- | test/test-fs-copyfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-fs-copyfile.c b/test/test-fs-copyfile.c index def3d967..c3e698e5 100644 --- a/test/test-fs-copyfile.c +++ b/test/test-fs-copyfile.c @@ -188,7 +188,7 @@ TEST_IMPL(fs_copyfile) { unlink(dst); r = uv_fs_copyfile(NULL, &req, fixture, dst, UV_FS_COPYFILE_FICLONE_FORCE, NULL); - ASSERT(r == 0 || r == UV_ENOSYS || r == UV_ENOTSUP); + ASSERT(r <= 0); if (r == 0) handle_result(&req); |