Skip to content

Commit 78ec0b0

Browse files
committed
Windows fix
Signed-off-by: Darby Johnston <[email protected]>
1 parent 201615f commit 78ec0b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_otiod.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ main(int argc, char** argv)
111111
std::filesystem::path const temp_file = temp_dir / "test.otiod";
112112
bundle::WriteOptions options;
113113
options.parent_path = sample_data_dir.u8string();
114-
assertTrue(bundle::to_otiod(timeline, temp_file, options));
114+
assertTrue(bundle::to_otiod(timeline, temp_file.u8string(), options));
115115

116116
// By default will provide relative paths.
117-
auto result = bundle::from_otiod(temp_file);
117+
auto result = bundle::from_otiod(temp_file.u8string());
118118
for (auto cl: result->find_clips())
119119
{
120120
if (auto er = dynamic_cast<otio::ExternalReference*>(

0 commit comments

Comments
 (0)