Regenerate jasmine.js.

This commit is contained in:
Christian Williams 2010-08-25 18:18:49 -07:00
parent b33b2d2cf1
commit b8b4457b6b
1 changed files with 4 additions and 2 deletions

View File

@ -1386,9 +1386,11 @@ jasmine.Matchers.prototype.toThrow = function(expected) {
result = (expected === jasmine.undefined || this.env.equals_(exception.message || exception, expected.message || expected)); result = (expected === jasmine.undefined || this.env.equals_(exception.message || exception, expected.message || expected));
} }
var not = this.isNot ? "not " : "";
this.message = function() { this.message = function() {
if (exception && (expected === jasmine.undefined || !this.env.equals_(exception.message || exception, expected.message || expected))) { if (exception && (expected === jasmine.undefined || !this.env.equals_(exception.message || exception, expected.message || expected))) {
return ["Expected function to throw", expected ? expected.message || expected : " an exception", ", but it threw", exception.message || exception].join(' '); return ["Expected function " + not + "to throw", expected ? expected.message || expected : " an exception", ", but it threw", exception.message || exception].join(' ');
} else { } else {
return "Expected function to throw an exception."; return "Expected function to throw an exception.";
} }
@ -2415,5 +2417,5 @@ jasmine.version_= {
"major": 0, "major": 0,
"minor": 11, "minor": 11,
"build": 1, "build": 1,
"revision": 1282784791 "revision": 1282785506
}; };