Browse Source

use all the things

jomo 10 years ago
parent
commit
5da42cdf7b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/test.js

+ 1 - 1
test/test.js

@@ -8,7 +8,7 @@ var skins = require('../modules/skins');
 
 var uuids = fs.readFileSync('test/uuids.txt').toString().split("\r\n");
 // Get a random UUID in order to prevent rate limiting
-var uuid = uuids[Math.floor((Math.random() * 200) + 1)];
+var uuid = uuids[Math.floor(Math.random() * uuids.length)];
 
 // Only deletes files, doesn't delete directory.
 var deleteFolderRecursive = function(path) {