Skip to content

Commit

Permalink
Address nit
Browse files Browse the repository at this point in the history
  • Loading branch information
pgporada committed Aug 22, 2024
1 parent 95f00dd commit 13bcab1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/admin/pause_identifier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func TestPauseIdentifiers(t *testing.T) {
}
a := admin{sac: testCase.saImpl, log: log}

responses, err := a.pauseIdentifiers(context.TODO(), testCase.data)
responses, err := a.pauseIdentifiers(context.Background(), testCase.data)
if testCase.expectErr {
test.AssertError(t, err, "should have errored, but did not")
} else {
Expand Down
2 changes: 1 addition & 1 deletion cmd/admin/unpause_account_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func TestUnpauseAccounts(t *testing.T) {
}
a := admin{sac: testCase.saImpl, log: log}

count, err := a.unpauseAccounts(context.TODO(), testCase.regIDs)
count, err := a.unpauseAccounts(context.Background(), testCase.regIDs)
if testCase.expectErr {
test.AssertError(t, err, "should have errored, but did not")
} else {
Expand Down

0 comments on commit 13bcab1

Please sign in to comment.