Browse Source

fixed test

sanex3339 9 years ago
parent
commit
abeb6c99ee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/Utils.spec.ts

+ 1 - 1
test/Utils.spec.ts

@@ -51,7 +51,7 @@ describe('Utils', () => {
     describe('getRandomVariableName (length: number = 6): string', () => {
     describe('getRandomVariableName (length: number = 6): string', () => {
         it('should return a string of given length with random variable name', () => {
         it('should return a string of given length with random variable name', () => {
             assert.match(Utils.getRandomVariableName(4), /^_0x(\w){4}$/);
             assert.match(Utils.getRandomVariableName(4), /^_0x(\w){4}$/);
-            assert.match(Utils.getRandomVariableName(6), /^_0x(\w){6}$/);
+            assert.match(Utils.getRandomVariableName(6), /^_0x(\w){4,6}$/);
         });
         });
     });
     });