Skip to content

Commit

Permalink
Add correct regex to test for throwing on a bad signature while marsh…
Browse files Browse the repository at this point in the history
…alling
  • Loading branch information
Matthew Karas committed Apr 1, 2015
1 parent e4b106e commit 7022db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unmarshall-basic.js
Expand Up @@ -102,7 +102,7 @@ describe("marshall", function() {
it("throws error on bad signature", function() {
var badSig = "1";
var badData = 1;
expectMarshallToThrowOnBadArguments(badSig, badData);
expectMarshallToThrowOnBadArguments(badSig, badData, /Unknown type.*in signature.*/);
});
});

Expand Down

0 comments on commit 7022db6

Please sign in to comment.