Merge "Do not check zip-entry validity on create_namespace" into nyc-dev
diff --git a/tests/unistd_test.cpp b/tests/unistd_test.cpp
index 62e39fd..8ac6dae 100644
--- a/tests/unistd_test.cpp
+++ b/tests/unistd_test.cpp
@@ -386,7 +386,7 @@
   close(fd);
 
   // The fd can even be a directory.
-  ASSERT_NE(-1, fd = open("/", O_RDONLY));
+  ASSERT_NE(-1, fd = open("/data", O_RDONLY));
   EXPECT_EQ(0, fn(fd));
   close(fd);