Skip to content

Commit

Permalink
nit: fix update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
tbavelier committed Jan 20, 2025
1 parent b198577 commit 049c0b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controller/datadoggenericresource/notebooks.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func updateNotebook(auth context.Context, client *datadogV1.NotebooksApi, instan
}
notebookUpdated, _, err := client.UpdateNotebook(auth, notebookID, *notebookUpdateData)
if err != nil {
return datadogV1.NotebookResponse{}, translateClientError(err, "error updating browser test")
return datadogV1.NotebookResponse{}, translateClientError(err, "error updating notebook")
}
return notebookUpdated, nil
}

0 comments on commit 049c0b0

Please sign in to comment.