diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp --- a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp @@ -6,8 +6,6 @@ // //===----------------------------------------------------------------------===// -// XFAIL: LIBCXX-DEBUG-FIXME - // UNSUPPORTED: c++03 // ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_DISABLE_DEPRECATION_WARNINGS @@ -44,7 +42,7 @@ assert(p == In1); } { - path p = fs::u8path(In3); + path p = fs::u8path(In2.data()); assert(p == In1); } { @@ -67,7 +65,7 @@ assert(p == In1); } { - path p = fs::u8path(u8In3); + path p = fs::u8path(u8In2.data()); assert(p == In1); } {