We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a49fe70 commit 7c1bf19Copy full SHA for 7c1bf19
test/integration/http_emitter_test.ts
@@ -56,7 +56,7 @@ describe("HTTP Transport Binding Emitter for CloudEvents", () => {
56
.send(event)
57
.then((response: AxiosResponse) => {
58
// A binary message will have a ce-id header
59
- expect(response.data["content-type"]).to.equal(DEFAULT_CONTENT_TYPE);
+ expect(response.data["content-type"]).to.equal(DEFAULT_CE_CONTENT_TYPE);
60
expect(response.data[CONSTANTS.CE_HEADERS.ID]).to.equal(event.id);
61
expect(response.data[CONSTANTS.CE_HEADERS.SPEC_VERSION]).to.equal(Version.V1);
62
// A binary message will have a request body for the data
0 commit comments