diff options
author | Daki Carnhof <carnhofdaki@gmail.com> | 2019-10-09 16:09:43 +0200 |
---|---|---|
committer | Carnhof Daki <carnhofdaki@gmail.com> | 2019-10-16 12:00:14 +0200 |
commit | bd9d40dbbdc0ee4c7f1d56202a984ca7222d4708 (patch) | |
tree | 660a87e0e9eb09f080254a889d3b804a63b1d299 /src | |
parent | 3a7b2a15e3ddcb26361f9bfc0de35dd6071f77eb (diff) |
tests: Fix fs_tests for unknown locales
Fix by removing "L" as suggested by meeDamian in
https://github.com/bitcoin/bitcoin/issues/14948#issuecomment-522355441
Co-Authored-By: bugs@meedamian.com
Github-Pull: #17086
Rebased-From: d48f664
Diffstat (limited to 'src')
-rw-r--r-- | src/test/fs_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fs_tests.cpp b/src/test/fs_tests.cpp index 6d5a6641f0..b504a3cbb1 100644 --- a/src/test/fs_tests.cpp +++ b/src/test/fs_tests.cpp @@ -15,7 +15,7 @@ BOOST_AUTO_TEST_CASE(fsbridge_fstream) fs::path tmpfolder = GetDataDir(); // tmpfile1 should be the same as tmpfile2 fs::path tmpfile1 = tmpfolder / "fs_tests_₿_🏃"; - fs::path tmpfile2 = tmpfolder / L"fs_tests_₿_🏃"; + fs::path tmpfile2 = tmpfolder / "fs_tests_₿_🏃"; { fsbridge::ofstream file(tmpfile1); file << "bitcoin"; |