Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Storage async await #8289

Merged
merged 18 commits into from
Jul 23, 2021
Prev Previous commit
Next Next commit
Xcode 13 Beta 3 update
  • Loading branch information
paulb777 committed Jul 23, 2021
commit 1d19bd1e8d2dd318c32fca64c5f61ac76643f38b
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ import XCTest
let fileURL = tmpDirURL.appendingPathComponent("hello.txt")
let data = try XCTUnwrap("Hello Swift World".data(using: .utf8), "Data construction failed")

async {
Task.init {
_ = try await ref.putDataAsync(data)
let task = ref.write(toFile: fileURL)

Expand Down