File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
cucumber_cpp/library/cucumber_expression/test Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ namespace cucumber_cpp::library::cucumber_expression
3232
3333 for (const auto & file : std::filesystem::directory_iterator (path))
3434 if (file.is_regular_file () && file.path ().extension () == " .yaml" )
35- testdata.emplace_back (file.path ().string (), YAML::LoadFile (file.path ()));
35+ testdata.emplace_back (file.path ().string (), YAML::LoadFile (file.path (). string () ));
3636
3737 return testdata;
3838 }
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ namespace cucumber_cpp::library::cucumber_expression
6868
6969 for (const auto & file : std::filesystem::directory_iterator (path))
7070 if (file.is_regular_file () && file.path ().extension () == " .yaml" )
71- testdata.emplace_back (file.path ().string (), YAML::LoadFile (file.path ()));
71+ testdata.emplace_back (file.path ().string (), YAML::LoadFile (file.path (). string () ));
7272
7373 return testdata;
7474 }
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ namespace cucumber_cpp::library::cucumber_expression
5252
5353 for (const auto & file : std::filesystem::directory_iterator (path))
5454 if (file.is_regular_file () && file.path ().extension () == " .yaml" )
55- testdata.emplace_back (file.path ().string (), YAML::LoadFile (file.path ()));
55+ testdata.emplace_back (file.path ().string (), YAML::LoadFile (file.path (). string () ));
5656
5757 return testdata;
5858 }
You can’t perform that action at this time.
0 commit comments