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
This commit is contained in:
parent
3a7b2a15e3
commit
bd9d40dbbd
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue