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
pull/764/head
Daki Carnhof 5 years ago committed by Jan Sarenik
parent dcc640811c
commit d48f664440

@ -15,7 +15,7 @@ BOOST_AUTO_TEST_CASE(fsbridge_fstream)
fs::path tmpfolder = GetDataDir(); fs::path tmpfolder = GetDataDir();
// tmpfile1 should be the same as tmpfile2 // tmpfile1 should be the same as tmpfile2
fs::path tmpfile1 = tmpfolder / "fs_tests_₿_🏃"; fs::path tmpfile1 = tmpfolder / "fs_tests_₿_🏃";
fs::path tmpfile2 = tmpfolder / L"fs_tests_₿_🏃"; fs::path tmpfile2 = tmpfolder / "fs_tests_₿_🏃";
{ {
fsbridge::ofstream file(tmpfile1); fsbridge::ofstream file(tmpfile1);
file << "bitcoin"; file << "bitcoin";

Loading…
Cancel
Save