Skip to content

Commit cb33a8a

Browse files
committed
parentheses
Signed-off-by: Fabio José <[email protected]>
1 parent 6fec621 commit cb33a8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/http_binding_0_1.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ describe("HTTP Transport Binding - Version 0.1", () => {
3131
describe("JSON Format", () => {
3232
it("requires '" + contentType + "' Content-Type in header", () => {
3333
return httpstructured01.emit(cloudevent)
34-
.then(response => {
34+
.then((response) => {
3535
expect(response.config.headers["Content-Type"])
3636
.to.equal(contentType);
3737
});
3838
});
3939

4040
it("the request should be correct", () => {
4141
return httpstructured01.emit(cloudevent)
42-
.then(response => {
42+
.then((response) => {
4343
expect(JSON.parse(response.config.data))
4444
.to.deep.equal(cloudevent.format());
4545
});

0 commit comments

Comments
 (0)