فهرست منبع

Fixed Color unit test.

Mr.doob 12 سال پیش
والد
کامیت
41aa9ed915
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      test/unit/math/Color.js

+ 2 - 2
test/unit/math/Color.js

@@ -91,11 +91,11 @@ test( "clone", function(){
     ok(c2.getHex() == 0x008080, "Hex c2: " + c2.getHex());
 });
 
-test( "lerpSelf", function(){
+test( "lerp", function(){
     var c = new THREE.Color();
     var c2 = new THREE.Color();
     c.setRGB(0, 0, 0);
-    c.lerpSelf(c2, 2);
+    c.lerp(c2, 2);
     ok( c.r == 2, "Red: " + c.r );
     ok( c.g == 2, "Green: " + c.g );
     ok( c.b == 2, "Blue: " + c.b );