Skip to content

Commit a663f43

Browse files
committed
Fix test issue with expect(...).to.be.empty
Signed-off-by: Fabio José <[email protected]>
1 parent 99a61a3 commit a663f43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/bindings/http/unmarshaller_0_2_tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ describe("HTTP Transport Binding Unmarshaller for CloudEvents v0.2", () => {
184184
un.unmarshall(payload, attributes)
185185
.then(actual => {throw {message: "failed"}})
186186
.catch(err =>
187-
expect(err.message).to.not.empty());
187+
expect(err.message).to.not.empty);
188188
});
189189

190190
it("No error when all attributes are in place", () => {

0 commit comments

Comments
 (0)