Skip to content

Commit

Permalink
clarify a GCP test
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Dec 27, 2023
1 parent d334b6c commit baf2caf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion taskchampion/taskchampion/src/server/cloud/gcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,12 @@ mod tests {

#[test]
fn del_missing() {
// Deleting an object that does not exist is not an error.
let Some((mut svc, pfx)) = make_service() else {
return;
};

svc.del(&pfx("testy")).unwrap();
assert!(svc.del(&pfx("testy")).is_ok());
}

#[test]
Expand Down

0 comments on commit baf2caf

Please sign in to comment.