소스 검색

test description update

sanex3339 8 년 전
부모
커밋
c6b943dfe5
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      test/node-obfuscators/FunctionDeclarationObfuscator.spec.ts

+ 2 - 2
test/node-obfuscators/FunctionDeclarationObfuscator.spec.ts

@@ -74,11 +74,11 @@ describe('FunctionDeclarationObfuscator', () => {
                 );
             });
 
-            it('should obfuscate function name inside `functionDeclaration` parent scope', () => {
+            it('should obfuscate function name', () => {
                 assert.match(functionDeclarationNode.id.name, /^_0x\w+$/);
             });
 
-            it('should obfuscate function name in `functionDeclaration` calls inside `functionDeclaration` parent scope', () => {
+            it('should obfuscate function name inside `functionDeclaration` parent scope', () => {
                 assert.match((<any>expressionStatementNode).expression.callee.name, /^_0x\w+$/);
             });
         });