Browse Source

add spacings to InterleavedBuffer

simonThiele 9 years ago
parent
commit
97374fdcbb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test/unit/core/InterleavedBuffer.js

+ 2 - 2
test/unit/core/InterleavedBuffer.js

@@ -4,10 +4,10 @@
 
 module( "InterleavedBuffer" );
 
-function checkInstanceAgainstCopy(instance, copiedInstance) {
+function checkInstanceAgainstCopy( instance, copiedInstance ) {
 	ok( copiedInstance instanceof THREE.InterleavedBuffer, "the clone has the correct type" );
 
-	for (var i = 0; i < instance.array.length; i++) {
+	for ( var i = 0; i < instance.array.length; i++ ) {
 		ok( copiedInstance.array[i] === instance.array[i], "array was copied" );
 	}