Skip to content

Commit

Permalink
fixed path to string conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
tonda-kriz committed Nov 12, 2024
1 parent 6beb8c9 commit 9f2e56d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ TEST_CASE( "protoc-parser" )

test_files( tests2, "tmp_test.proto", { { "level2", "level1" } } );
test_files( tests2, "tmp_test.proto", { { std::filesystem::current_path( ) / "level1" } } );
test_files( tests2, std::filesystem::current_path( ) / "tmp_test.proto",
test_files( tests2, ( std::filesystem::current_path( ) / "tmp_test.proto" ).string( ),
{ { "level2", "level1" } } );

REQUIRE_NOTHROW( std::filesystem::remove( "empty.proto" ) );
Expand Down

0 comments on commit 9f2e56d

Please sign in to comment.