Skip to content

Commit

Permalink
tests: Fix fs_tests for unknown locales
Browse files Browse the repository at this point in the history
Fix by removing "L" as suggested by meeDamian in
bitcoin#14948 (comment)

Co-Authored-By: bugs@meedamian.com
  • Loading branch information
carnhofdaki authored and Jan Sarenik committed Oct 15, 2019
1 parent dcc6408 commit d48f664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/fs_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit d48f664

Please sign in to comment.