summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-error.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/test/test-error.c')
-rw-r--r--deps/uv/test/test-error.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/deps/uv/test/test-error.c b/deps/uv/test/test-error.c
index 4c4efa30cd..ff53eb1d77 100644
--- a/deps/uv/test/test-error.c
+++ b/deps/uv/test/test-error.c
@@ -53,6 +53,7 @@ TEST_IMPL(error_message) {
TEST_IMPL(sys_error) {
#if defined(_WIN32)
ASSERT(uv_translate_sys_error(ERROR_NOACCESS) == UV_EACCES);
+ ASSERT(uv_translate_sys_error(ERROR_ELEVATION_REQUIRED) == UV_EACCES);
ASSERT(uv_translate_sys_error(WSAEADDRINUSE) == UV_EADDRINUSE);
ASSERT(uv_translate_sys_error(ERROR_BAD_PIPE) == UV_EPIPE);
#else