Err "QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead"

Err "QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead"

Hi,

In the file myTests.js I have the code below:
  1. test('assertions', function() {  
  2.     equals( 1, 1, 'one equals one');  
  3. }) 
when I run it I got the err "QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal "

instead if I run :
  1. test('assertions'function() {  
  2.     ok( 1 == 1, 'one equals one');  
  3. })  

everything are ok.

what shell I do to fox this problem err ?

Thanks