-
-
Notifications
You must be signed in to change notification settings - Fork 825
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test usability fix #23096
Test usability fix #23096
Conversation
(Standard links)
|
6c2b330
to
ffd9ed2
Compare
|
Having the dummy data in the past causes debugging pain
ffd9ed2
to
d037332
Compare
@seamuslee001 it passed |
@@ -1119,10 +1119,10 @@ public function eventCreate(array $params = []): array { | |||
'event_type_id' => 1, | |||
'is_public' => 1, | |||
'start_date' => 20081021, | |||
'end_date' => 20081023, | |||
'end_date' => '+ 1 month', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so a 6 year event? :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@seamuslee001 yeah - key thing is the end date is in the future & start date is in the past so when you try to use it you don't get told it is invalid
Better than it was before anyway. |
Having the dummy data in the past causes debugging pain