Skip to content

Commit 4a8b4ef

Browse files
committed
Fix test
1 parent 613613b commit 4a8b4ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryNodeJoinAndFailureTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ Test reproduces the needed behavior (two nodes in CONNECTING state) doing the fo
167167

168168
if (nodeId.equals(node2Id)) {
169169
Object workerObj = GridTestUtils.getFieldValue(impl, "msgWorker");
170-
171-
OutputStream out = GridTestUtils.getFieldValue(workerObj, "out");
170+
TcpDiscoveryIoSession ses = GridTestUtils.getFieldValue(workerObj, "ses");
171+
OutputStream out = GridTestUtils.getFieldValue(ses, "out");
172172

173173
try {
174174
out.close();

0 commit comments

Comments
 (0)