Skip to content

Commit 4d19c61

Browse files
committed
Silence warning of unused result in test
1 parent 9b5a7d3 commit 4d19c61

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
@@ -281,7 +281,7 @@ class LoopbackFTPServerTest: XCTestCase {
281281
}
282282
let timeout = DispatchTime(uptimeNanoseconds: DispatchTime.now().uptimeNanoseconds + 2_000_000_000)
283283

284-
serverReady.wait(timeout: timeout)
284+
_ = serverReady.wait(timeout: timeout)
285285
}
286286
}
287287
#endif

0 commit comments

Comments
 (0)