Skip to content

Commit c6b943d

Browse files
committed
test description update
1 parent 1bb5f88 commit c6b943d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/node-obfuscators/FunctionDeclarationObfuscator.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ describe('FunctionDeclarationObfuscator', () => {
7474
);
7575
});
7676

77-
it('should obfuscate function name inside `functionDeclaration` parent scope', () => {
77+
it('should obfuscate function name', () => {
7878
assert.match(functionDeclarationNode.id.name, /^_0x\w+$/);
7979
});
8080

81-
it('should obfuscate function name in `functionDeclaration` calls inside `functionDeclaration` parent scope', () => {
81+
it('should obfuscate function name inside `functionDeclaration` parent scope', () => {
8282
assert.match((<any>expressionStatementNode).expression.callee.name, /^_0x\w+$/);
8383
});
8484
});

0 commit comments

Comments
 (0)