Skip to content

Commit 8a09f9a

Browse files
test: rm name for unused var
1 parent efba6c3 commit 8a09f9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/swiftui/FirebaseSwiftUIExample/FirebaseSwiftUIExampleTests/TestHarness.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func clearAuthEmulatorState(projectID: String = "flutterfire-e2e-tests") async t
5151
let url = URL(string: "http://localhost:9099/emulator/v1/projects/\(projectID)/accounts")!
5252
var request = URLRequest(url: url)
5353
request.httpMethod = "DELETE"
54-
let (data, response) = try await URLSession.shared.data(for: request)
54+
let (_, response) = try await URLSession.shared.data(for: request)
5555

5656
if let httpResponse = response as? HTTPURLResponse {
5757
print("🔥 clearAuthEmulatorState: status = \(httpResponse.statusCode)")

0 commit comments

Comments
 (0)