From 8870f907e8da788c575e555a3295eaec3d520ba3 Mon Sep 17 00:00:00 2001 From: Aaron Peckham & Christian Williams Date: Fri, 14 Aug 2009 15:43:36 -0700 Subject: [PATCH] Fixed formatting. --- src/Matchers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Matchers.js b/src/Matchers.js index f69b858a..63194332 100644 --- a/src/Matchers.js +++ b/src/Matchers.js @@ -219,12 +219,12 @@ jasmine.Matchers.prototype.toNotContain = function(item) { jasmine.Matchers.prototype.toBeLessThan = function(expected) { return this.report(this.actual < expected, 'Expected ' + jasmine.Matchers.pp(this.actual) + ' to be less than ' + jasmine.Matchers.pp(expected) + ', but it was not.'); -} +}; jasmine.Matchers.prototype.toBeGreaterThan = function(expected) { return this.report(this.actual > expected, 'Expected ' + jasmine.Matchers.pp(this.actual) + ' to be greater than ' + jasmine.Matchers.pp(expected) + ', but it was not.'); -} +}; /** * Matcher that checks that the expected exception was thrown by the actual.