Skip to content

Commit

Permalink
Fixes another string conversion causing a build error on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-guyot-infomaniak committed Nov 18, 2024
1 parent 5f68f9c commit 6fb0158
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,9 @@ void TestExecutorWorker::testIsValidDestination() {
// False if the item is created on the local replica is not at the root of the synchronisation folder and has a
// corresponding parent node with no id.
{
const auto correspondingParentNode = std::make_shared<Node>(666, ReplicaSide::Remote, "parent_dir", NodeType::Directory,
OperationType::None, std::nullopt, testhelpers::defaultTime,
testhelpers::defaultTime, testhelpers::defaultFileSize, root);
const auto correspondingParentNode = std::make_shared<Node>(
666, ReplicaSide::Remote, Str("parent_dir"), NodeType::Directory, OperationType::None, std::nullopt,
testhelpers::defaultTime, testhelpers::defaultTime, testhelpers::defaultFileSize, root);


SyncOpPtr op = generateSyncOperationWithNestedNodes(1, Str("test_file.txt"), OperationType::Create, NodeType::File);
Expand Down

0 comments on commit 6fb0158

Please sign in to comment.