chore(snapshot): remove l and o from id generation

This commit is contained in:
Adam Bradley
2016-03-04 09:38:24 -06:00
parent 5ab8f616f6
commit 1b030ea464

View File

@ -92,7 +92,7 @@ module.exports = function(gulp, argv, buildConfig) {
}
function generateTestId() {
var chars = 'abcdefghijklmnopqrstuvwxyz';
var chars = 'abcdefghijkmnpqrstuvwxyz';
var id = chars.charAt(Math.floor(Math.random() * chars.length));
chars += '0123456789';
while (id.length < 3) {