Skip to content

Commit

Permalink
patch: documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidg3 committed Jun 24, 2024
1 parent 36dc9db commit 558148a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/concepts/dates-times.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ protected static async messageIsSent() {

await this.someOperationThatSendsAMessage()

assert.doesInclude(papassedBody, '{{formatDateTimeUntil eventDateMs}}')
assert.doesInclude(passedBody, '{{formatDateTimeUntil eventDateMs}}')
}
```
Expand Down Expand Up @@ -308,7 +308,7 @@ protected static async messageIsSent() {

await this.someOperationThatSendsAMessage()

assert.doesInclude(papassedBody, '{{formatDateTimeUntil eventDateMs}}')
assert.doesInclude(passedBody, '{{formatDateTimeUntil eventDateMs}}')
assert.isEqualDeep(passedContext, { timezone: 'Africa/Johannesburg', eventDateMs: expectedEventDateMs })
}
```
Expand Down Expand Up @@ -363,7 +363,7 @@ protected static async messageIsSent(timezone: TimezoneName) {

await this.someOperationThatSendsAMessage()

assert.doesInclude(papassedBody, '{{formatDateTimeUntil eventDateMs}}')
assert.doesInclude(passedBody, '{{formatDateTimeUntil eventDateMs}}')
assert.isEqualDeep(passedContext, { timezone, eventDateMs: expectedEventDateMs })
}
```
Expand Down

0 comments on commit 558148a

Please sign in to comment.