Skip to content

Commit d0cf7d0

Browse files
committed
fix logs
1 parent b48f3f8 commit d0cf7d0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/integration/repositories_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ func (suite *GarmSuite) TestRepositories() {
9797
func (suite *GarmSuite) TestRepositoriesByName() {
9898
t := suite.T()
9999

100-
t.Logf("Update repo with repo_id %s%s", suite.repo.Owner, suite.repo.Name)
100+
t.Logf("Update repo with repo %s/%s", suite.repo.Owner, suite.repo.Name)
101101
updateParams := params.UpdateEntityParams{
102102
CredentialsName: fmt.Sprintf("%s-clone", suite.credentialsName),
103103
}
@@ -158,7 +158,7 @@ func (suite *GarmSuite) InstallRepoWebhook(id string) *params.HookInfo {
158158

159159
func (suite *GarmSuite) InstallRepoByNameWebhook(owner, name string) *params.HookInfo {
160160
t := suite.T()
161-
t.Logf("Install repo webhook with repo_id %s/%s", owner, name)
161+
t.Logf("Install repo webhook with repo %s/%s", owner, name)
162162
webhookParams := params.InstallWebhookParams{
163163
WebhookEndpointType: params.WebhookEndpointDirect,
164164
}
@@ -208,7 +208,7 @@ func (suite *GarmSuite) UninstallRepoWebhook(id string) {
208208

209209
func (suite *GarmSuite) UninstallRepoByNameWebhook(owner, repo string) {
210210
t := suite.T()
211-
t.Logf("Uninstall repo webhook with repo_id %s/%s", owner, repo)
211+
t.Logf("Uninstall repo webhook with repo %s/%s", owner, repo)
212212
err := uninstallRepoByNameWebhook(suite.cli, suite.authToken, owner, repo)
213213
suite.NoError(err, "error uninstalling repository webhook")
214214
}

0 commit comments

Comments
 (0)