fix unit test error

This commit is contained in:
mahula 2022-10-06 10:39:42 +02:00
parent 11f320ba3f
commit 40e505f6e5
2 changed files with 4 additions and 4 deletions

View File

@ -54,7 +54,7 @@ describe('ContributionMessagesListItem', () => {
it('has the message creation date', () => {
expect(wrapper.find('div.text-right.is-moderator > span:nth-child(3)').text()).toBe(
'Mon Aug 29 2022 12:23:27 GMT+0000 (Koordinierte Weltzeit)',
'Mon Aug 29 2022 12:23:27 GMT+0000 (Coordinated Universal Time)',
)
})
@ -114,7 +114,7 @@ describe('ContributionMessagesListItem', () => {
it('has the message creation date', () => {
expect(wrapper.find('div.is-not-moderator.text-left > span:nth-child(3)').text()).toBe(
'Mon Aug 29 2022 12:25:34 GMT+0000 (Koordinierte Weltzeit)',
'Mon Aug 29 2022 12:25:34 GMT+0000 (Coordinated Universal Time)',
)
})

View File

@ -106,7 +106,7 @@ describe('ContributionMessagesListItem', () => {
it('has the message creation date', () => {
expect(wrapper.find('div.is-moderator.text-left > span:nth-child(3)').text()).toBe(
'Mon Aug 29 2022 12:25:34 GMT+0000 (Koordinierte Weltzeit)',
'Mon Aug 29 2022 12:25:34 GMT+0000 (Coordinated Universal Time)',
)
})
@ -164,7 +164,7 @@ describe('ContributionMessagesListItem', () => {
it('has the message creation date', () => {
expect(wrapper.find('div.is-not-moderator.text-right > span:nth-child(3)').text()).toBe(
'Mon Aug 29 2022 12:23:27 GMT+0000 (Koordinierte Weltzeit)',
'Mon Aug 29 2022 12:23:27 GMT+0000 (Coordinated Universal Time)',
)
})