Skip to content

Commit aea3a79

Browse files
authored
Merge pull request #2719 from valeriyvan/warning-unused-res
Silence warning of unused result in test
2 parents 892dda8 + 4d19c61 commit aea3a79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Foundation/FTPServer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ class LoopbackFTPServerTest: XCTestCase {
283283
}
284284
let timeout = DispatchTime(uptimeNanoseconds: DispatchTime.now().uptimeNanoseconds + 2_000_000_000)
285285

286-
serverReady.wait(timeout: timeout)
286+
_ = serverReady.wait(timeout: timeout)
287287
}
288288
}
289289
#endif

0 commit comments

Comments
 (0)