Skip to content

Commit

Permalink
Fix Qulice warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kniazkov committed Feb 27, 2024
1 parent fb762c9 commit ef6dbc5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/test/java/org/cqfn/astranaut/core/DifferenceNodeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ class DifferenceNodeTest {
/**
* File name with tree containing 'Insert' action.
*/
private static final String TREE_BEFORE_DELETE = "before_delete_action.json";

private static final String TREE_BEFO_DELETE = "before_delete_action.json";

/**
* File name with tree containing 'Insert' action.
Expand All @@ -67,7 +66,7 @@ void testInsertGetAfter() {
final DifferenceNode diff = (DifferenceNode) root;
final Node actual = diff.getAfter();
Assertions.assertNotEquals(EmptyTree.INSTANCE, actual);
final Node expected = this.loadTree(DifferenceNodeTest.TREE_BEFORE_DELETE);
final Node expected = this.loadTree(DifferenceNodeTest.TREE_BEFO_DELETE);
Assertions.assertTrue(expected.deepCompare(actual));
}

Expand All @@ -81,7 +80,7 @@ void testDeleteGetBefore() {
final DifferenceNode diff = (DifferenceNode) root;
final Node actual = diff.getBefore();
Assertions.assertNotEquals(EmptyTree.INSTANCE, actual);
final Node expected = this.loadTree(DifferenceNodeTest.TREE_BEFORE_DELETE);
final Node expected = this.loadTree(DifferenceNodeTest.TREE_BEFO_DELETE);
Assertions.assertTrue(expected.deepCompare(actual));
}

Expand Down

0 comments on commit ef6dbc5

Please sign in to comment.