Skip to content

Commit

Permalink
fix typos causing some tests to fail (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
rochdev committed Sep 27, 2018
1 parent 182989c commit 34c1685
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/plugins/util/web.spec.js
Expand Up @@ -196,7 +196,7 @@ describe('plugins/util/web', () => {
web.enterRoute(req, '/bar')
res.end()

expect(span.context().tags).to.have.property([RESOURCE_NAME], 'GET /foo/bar')
expect(span.context().tags).to.have.property(RESOURCE_NAME, 'GET /foo/bar')
})
})

Expand All @@ -214,7 +214,7 @@ describe('plugins/util/web', () => {
web.exitRoute(req)
res.end()

expect(span.context().tags).to.have.property([RESOURCE_NAME], 'GET /foo')
expect(span.context().tags).to.have.property(RESOURCE_NAME, 'GET /foo')
})
})

Expand Down

0 comments on commit 34c1685

Please sign in to comment.