Skip to content

Commit

Permalink
fix: tests after atoolo-events-calendar-bundle changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sitepark-veltrup committed Nov 27, 2024
1 parent d0662ce commit 1a04448
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/GraphQL/Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public function test(
$messages = array_map(
static fn($error) =>
$error['message'] .
"\npath: " . implode('/', $error['path']),
"\npath: " . (is_array($error['path']) ? implode('/', $error['path']) : $error['path']),
$response->getErrors(),
);
$this->fail(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ query search {
isFullDay
hasStartTime
hasEndTime
}
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@
"rRule": null,
"isFullDay": false,
"hasStartTime": true,
"hasEndTime": true
"hasEndTime": true,
"rRule": null
}
]
}
}
]
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ query search {
isFullDay
hasStartTime
hasEndTime
}
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
{
"start": "2022-12-16T16:00:00+01:00",
"end": "2022-12-16T23:59:00+01:00",
"rRule": null,
"isFullDay": false,
"hasStartTime": true,
"hasEndTime": true
"hasEndTime": true,
"rRule": null
}
]
}
}
]
}
}
}

0 comments on commit 1a04448

Please sign in to comment.