We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9c046b commit e211508Copy full SHA for e211508
Sources/Nimble/Matchers/Async.swift
@@ -75,6 +75,7 @@ private func toNeverPredicate<T>(predicate: Predicate<T>, timeout: DispatchTimeI
75
case let .raisedException(exception):
76
return PredicateResult(status: .fail, message: .fail("unexpected exception raised: \(exception)"))
77
case .blockedRunLoop:
78
+ // swiftlint:disable:next line_length
79
let message = lastPredicateResult?.message.appended(message: " (timed out, but main run loop was unresponsive).") ??
80
.fail("main run loop was unresponsive")
81
return PredicateResult(status: .fail, message: message)
0 commit comments