Skip to content

Commit

Permalink
fix(examples-projects): fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 committed Sep 11, 2018
1 parent fa1fd9d commit 1d85a9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/local-tls/services/node-service/test/integ.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('GET /call-go-service', () => {
it('should respond with a message from go-service', (done) => {
agent
.get("/call-go-service")
.expect(200, { message: "Hello from Go!" })
.expect(200, { message: "Hello from Go!" })
.end((err) => {
if (err) return done(err)
done()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('GET /call-go-service', () => {
it('should respond with a message from go-service', (done) => {
agent
.get("/call-go-service")
.expect(200, { message: "Hello from Go!" })
.expect(200, { message: "Hello from Go!" })
.end((err) => {
if (err) return done(err)
done()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('GET /call-go-service', () => {
it('should respond with a message from go-service', (done) => {
agent
.get("/call-go-service")
.expect(200, { message: "Hello from Go!" })
.expect(200, { message: "Hello from Go!" })
.end((err) => {
if (err) return done(err)
done()
Expand Down

0 comments on commit 1d85a9d

Please sign in to comment.