aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaki Carnhof <carnhofdaki@gmail.com>2019-10-09 16:09:43 +0200
committerCarnhof Daki <carnhofdaki@gmail.com>2019-10-16 12:00:14 +0200
commitbd9d40dbbdc0ee4c7f1d56202a984ca7222d4708 (patch)
tree660a87e0e9eb09f080254a889d3b804a63b1d299
parent3a7b2a15e3ddcb26361f9bfc0de35dd6071f77eb (diff)
downloadbitcoin-bd9d40dbbdc0ee4c7f1d56202a984ca7222d4708.tar.xz
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
-rw-r--r--src/test/fs_tests.cpp2
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";