sideeffect-io / AsyncExtensions

AsyncExtensions aims to mimic Swift Combine operators for async sequences.
MIT License
324 stars 26 forks source link

Fix warnings for renmaed methods and unsupported test methods #36

Open kdubb opened 1 year ago

kdubb commented 1 year ago

Code

The “new” signature is already used in the code so shouldn’t have an impact on platform/swift version support.

Tests

The current use of await wait(for:timeout:) and waitForExpectations(timeout:) has been deprecated in async test methods due to a possibility of deadlocking the test (see https://developer.apple.com/documentation/xcode-release-notes/xcode-14_3-release-notes)

Description

Checklist