Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmarban committed Apr 28, 2019
2 parents e80409c + 06d4937 commit bc28737
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/winston-telegram.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ describe('winston-telegram', function () {
} catch (error) {
expect(error.message)
.to.be.an('string')
.that.equals("Unhandled error. ('error')")
.that.contains('error')
}
})

Expand All @@ -346,7 +346,7 @@ describe('winston-telegram', function () {
} catch (error) {
expect(error.message)
.to.be.an('string')
.that.equals("Unhandled error. ('503: foo')")
.that.contains('503: foo')
}
})

Expand All @@ -366,7 +366,7 @@ describe('winston-telegram', function () {
} catch (error) {
expect(error.message)
.to.be.an('string')
.that.equals("Unhandled error. ('503')")
.that.contains('503')
}
})
})
Expand Down

0 comments on commit bc28737

Please sign in to comment.