Skip to content

Commit

Permalink
Test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis committed Apr 9, 2020
1 parent 1163825 commit 267cef1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/request-client.js/src/http-data-access.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default class HttpDataAccess implements DataAccessTypes.IDataAccess {
baseURL: 'http://localhost:3000',
headers: {
[REQUEST_CLIENT_VERSION_HEADER]: requestClientVersion,
}
},
},
nodeConnectionConfig,
);
Expand Down
2 changes: 1 addition & 1 deletion packages/request-node/test/requestNode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ describe('requestNode server', () => {
it('the response header contains the Request Node version', async () => {
// Import directly requestNode to create a server
requestNodeInstance = new requestNode();
server = requestNodeInstance.listen(3002, () => 0);
server = requestNodeInstance.listen(3003, () => 0);

await request(server)
.post('/')
Expand Down

0 comments on commit 267cef1

Please sign in to comment.