Eric Wieser 11 anni fa
parent
commit
4f468cf9a4
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      test/unit/math/Color.js

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

@@ -4,7 +4,7 @@ test( "constructor", function(){
     var c = new THREE.Color();
     ok( c.r, "Red: " + c.r );
     ok( c.g, "Green: " + c.g );
-    ok( c.b, "Blue: " + c.g );
+    ok( c.b, "Blue: " + c.b );
 });
 
 test( "copyHex", function(){