Skip to content

Commit 8c3f4da

Browse files
committed
Fix tests
1 parent 1b89cf8 commit 8c3f4da

File tree

1 file changed

+3
-1
lines changed
  • modules/code-deployment/src/integrationTest/java/org/apache/ignite/internal/deployment

1 file changed

+3
-1
lines changed

modules/code-deployment/src/integrationTest/java/org/apache/ignite/internal/deployment/Unit.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,9 @@ void verifyByRest(IgniteImpl entryNode) {
156156

157157
CompletableFuture<Void> result = entryNode.deployment().nodeUnitFileStructure(id, version).thenAccept(folder -> {
158158
try {
159-
processEntry(folder, currentDir);
159+
for (UnitEntry child : folder.children()) {
160+
processEntry(child, currentDir);
161+
}
160162
} catch (IOException e) {
161163
fail(e);
162164
}

0 commit comments

Comments
 (0)