From 662b4b94f4492d09e244dcba162a8b1a880b656b Mon Sep 17 00:00:00 2001 From: Christian Williams Date: Tue, 7 Jul 2009 23:06:18 -0700 Subject: [PATCH] jasmine.Spec.prototype.(expect|waits|waitFor) shouldn't be deprecated. --- src/Spec.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Spec.js b/src/Spec.js index aef5ac26..70c84698 100644 --- a/src/Spec.js +++ b/src/Spec.js @@ -56,7 +56,6 @@ jasmine.Spec.prototype.expects_that = function(actual) { /** * @private - * @deprecated */ jasmine.Spec.prototype.expect = function(actual) { return new jasmine.Matchers(this.env, actual, this.results); @@ -64,7 +63,6 @@ jasmine.Spec.prototype.expect = function(actual) { /** * @private - * @deprecated */ jasmine.Spec.prototype.waits = function(timeout) { this.currentTimeout = timeout; @@ -74,7 +72,6 @@ jasmine.Spec.prototype.waits = function(timeout) { /** * @private - * @deprecated */ jasmine.Spec.prototype.waitsFor = function(timeout, latchFunction, message) { this.currentTimeout = timeout;