Browse Source

fixed specs descriptions

sanex3339 8 years ago
parent
commit
daef273cf2
1 changed files with 3 additions and 3 deletions
  1. 3 3
      test/unit-tests/NodeUtils.spec.ts

+ 3 - 3
test/unit-tests/NodeUtils.spec.ts

@@ -58,7 +58,7 @@ describe('NodeUtils', () => {
             assert.deepEqual(blockStatementNode, expectedBlockStatementNode);
         });
 
-        it('should does not change `BlockStatement` node body if given node is not a valid AbstractCustomNode', () => {
+        it('should does not change `BlockStatement` node body if given node is not a valid Node', () => {
             assert.doesNotChange(
                 () => NodeUtils.appendNode(blockStatementNode.body, <INode>{}),
                 blockStatementNode,
@@ -227,7 +227,7 @@ describe('NodeUtils', () => {
             assert.deepEqual(blockStatementNode, expectedBlockStatementNode);
         });
 
-        it('should does not change `BlockStatement` node body if given node is not a valid AbstractCustomNode', () => {
+        it('should does not change `BlockStatement` node body if given node is not a valid Node', () => {
             assert.doesNotChange(
                 () => NodeUtils.insertNodeAtIndex(blockStatementNode.body, <INode>{}, 1),
                 blockStatementNode,
@@ -310,7 +310,7 @@ describe('NodeUtils', () => {
             assert.deepEqual(blockStatementNode, expectedBlockStatementNode);
         });
 
-        it('should does not change `BlockStatement` node body if given node is not a valid AbstractCustomNode', () => {
+        it('should does not change `BlockStatement` node body if given node is not a valid Node', () => {
             assert.doesNotChange(
                 () => NodeUtils.prependNode(blockStatementNode.body, <INode>{}),
                 blockStatementNode,