Skip to content

Commit

Permalink
cap
Browse files Browse the repository at this point in the history
  • Loading branch information
elad-codefresh committed Nov 29, 2021
1 parent 9d373cb commit 9eddca3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pkg/git/repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ var (
func AddFlags(cmd *cobra.Command, opts *AddFlagsOptions) *CloneOptions {
co := &CloneOptions{
FS: fs.Create(opts.FS),
createIfNotExist: opts.CreateIfNotExist,
CreateIfNotExist: opts.CreateIfNotExist,
}

if opts.Prefix != "" && !strings.HasSuffix(opts.Prefix, "-") {
Expand Down Expand Up @@ -182,7 +182,7 @@ func (o *CloneOptions) GetRepo(ctx context.Context) (Repository, fs.FS, error) {
if err != nil {
switch err {
case transport.ErrRepositoryNotFound:
if !o.createIfNotExist {
if !o.CreateIfNotExist {
return nil, nil, err
}

Expand Down
8 changes: 4 additions & 4 deletions pkg/git/repository_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -491,10 +491,10 @@ func TestGetRepo(t *testing.T) {
assert.Error(t, transport.ErrRepositoryNotFound, e)
},
},
"Should fail when createIfNotExist is true and create fails": {
"Should fail when CreateIfNotExist is true and create fails": {
opts: &CloneOptions{
Repo: "https://github.com/owner/name",
createIfNotExist: true,
CreateIfNotExist: true,
},
wantErr: "some error",
cloneFn: func(_ context.Context, opts *CloneOptions) (*repo, error) {
Expand Down Expand Up @@ -526,10 +526,10 @@ func TestGetRepo(t *testing.T) {
assert.EqualError(t, e, "failed to initialize repository: some error")
},
},
"Should create and init repo when createIfNotExist is true": {
"Should create and init repo when CreateIfNotExist is true": {
opts: &CloneOptions{
Repo: "https://github.com/owner/name",
createIfNotExist: true,
CreateIfNotExist: true,
FS: fs.Create(memfs.New()),
},
wantErr: "some error",
Expand Down

0 comments on commit 9eddca3

Please sign in to comment.