Skip to content

Commit

Permalink
test: fix breaking tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Harminder Virk authored and Harminder Virk committed Apr 11, 2022
1 parent 6f2e501 commit b2e0643
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/base-mailer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ test.group('BaseMailer', (group) => {

assert.deepEqual(fakeMailer.find({ subject: 'Welcome' }), {
subject: 'Welcome',
from: { address: 'virk@adonisjs.com' },
to: [{ address: 'virk@adonisjs.com' }],
from: { address: 'virk@adonisjs.com', name: '' },
to: [{ address: 'virk@adonisjs.com', name: '' }],
})
})

Expand Down

0 comments on commit b2e0643

Please sign in to comment.