Skip to content

Commit

Permalink
Fix windows path
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoinePrv committed Feb 8, 2024
1 parent cf070f5 commit 5c131e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmamba/ext/solv-cpp/tests/src/test_repo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ TEST_SUITE("solv::ObjRepo")
{
// Using only C OS encoding API for test.
auto dir = TmpDir();
const auto solv_file = dir.path / "test-forge.solv";
const auto solv_file = (dir.path / "test-forge.solv").string();
{
std::FILE* fptr = std::fopen(solv_file.c_str(), "wb");
REQUIRE_NE(fptr, nullptr);
Expand Down

0 comments on commit 5c131e3

Please sign in to comment.