Skip to content

Commit

Permalink
chore: correct typo in error printing (#4738)
Browse files Browse the repository at this point in the history
Co-authored-by: Rui Chen <[email protected]>
  • Loading branch information
phuongdnguyen and chenrui333 authored Jul 10, 2024
1 parent e25b865 commit 4921e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testdrive/testdrive.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Follow these instructions to create a token (we don't store any tokens):
return errors.Wrapf(err, "forking repo %s/%s", terraformExampleRepoOwner, terraformExampleRepo)
}
if !githubClient.CheckForkSuccess(terraformExampleRepoOwner, terraformExampleRepo) {
return fmt.Errorf("didn't find forked repo %s/%s. fork unsuccessful", terraformExampleRepoOwner, terraformExampleRepoOwner)
return fmt.Errorf("didn't find forked repo %s/%s. fork unsuccessful", terraformExampleRepoOwner, terraformExampleRepo)
}
s.Stop()
colorstring.Println("[green]=> fork completed![reset]")
Expand Down

0 comments on commit 4921e00

Please sign in to comment.