confirm current account update
All checks were successful
Tests / test (pull_request) Has been skipped

This commit is contained in:
Dan Anglin 2024-08-18 21:00:08 +01:00
parent 43b8c7ef97
commit c1d644f534
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -78,6 +78,8 @@ func testUpdateCurrentAccount(account, credentialsFile string) func(t *testing.T
if err := config.UpdateCurrentAccount(account, credentialsFile); err != nil { if err := config.UpdateCurrentAccount(account, credentialsFile); err != nil {
t.Fatalf("Unable to update the current account to %q: %v", account, err) t.Fatalf("Unable to update the current account to %q: %v", account, err)
} }
t.Logf("Successfully updated the current account.")
} }
} }