From fdcb3ce89ba676d3e06b30c18c04e926a775366c Mon Sep 17 00:00:00 2001 From: Steffen Schuemann Date: Thu, 9 Apr 2020 12:59:13 +0200 Subject: [PATCH] refs #63, fix typo --- test/filesystem_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/filesystem_test.cpp b/test/filesystem_test.cpp index 82e0495..c449325 100644 --- a/test/filesystem_test.cpp +++ b/test/filesystem_test.cpp @@ -2640,7 +2640,7 @@ TEST_CASE("std::string_view support", "[filesystem][fs.string_view]") #if defined(IS_WCHAR_PATH) || defined(GHC_USE_WCHAR_T) { - std::wsting p(L"foo/bar"); + std::wstring p(L"foo/bar"); std::wstring_view sv(p); CHECK(fs::path(sv, fs::path::format::generic_format).generic_string() == "foo/bar"); fs::path p2(L"fo");