Skip to content

Commit d48f664

Browse files
carnhofdakiJan Sarenik
authored andcommitted
tests: Fix fs_tests for unknown locales
Fix by removing "L" as suggested by meeDamian in bitcoin/bitcoin#14948 (comment) Co-Authored-By: [email protected]
1 parent dcc6408 commit d48f664

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/fs_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ BOOST_AUTO_TEST_CASE(fsbridge_fstream)
1515
fs::path tmpfolder = GetDataDir();
1616
// tmpfile1 should be the same as tmpfile2
1717
fs::path tmpfile1 = tmpfolder / "fs_tests_₿_🏃";
18-
fs::path tmpfile2 = tmpfolder / L"fs_tests_₿_🏃";
18+
fs::path tmpfile2 = tmpfolder / "fs_tests_₿_🏃";
1919
{
2020
fsbridge::ofstream file(tmpfile1);
2121
file << "bitcoin";

0 commit comments

Comments
 (0)