Skip to content

Commit

Permalink
fix up failed request test
Browse files Browse the repository at this point in the history
  • Loading branch information
cdillard-NewRelic committed Jan 27, 2025
1 parent 8c3d711 commit d76ffac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class ViewController: UIViewController {

options.append(UtilOption(title: "Change Image Error", handler: { [self] in brokeRefreshAction()}))

options.append(UtilOption(title: "Change Image Error (Async)", handler: { [self] in refreshActionAsync()}))
options.append(UtilOption(title: "Change Image Error (Async)", handler: { [self] in brokeRefreshActionAsync()}))


}
Expand All @@ -142,7 +142,7 @@ class ViewController: UIViewController {

func refreshActionAsync() {
Task {
await viewModel.loadApodDataAsyncBrokeData()
await viewModel.loadApodDataAsync()
}
}

Expand Down

0 comments on commit d76ffac

Please sign in to comment.