Skip to content

Commit

Permalink
didn't cry, was my fault. eill work now
Browse files Browse the repository at this point in the history
  • Loading branch information
ItamarYuran committed Sep 29, 2024
1 parent 5cd8b5a commit 065bfe4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions esti/lakectl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ func TestLakectlLogNoMergesWithCommitsAndMerges(t *testing.T) {
branchVars := map[string]string{
"REPO": repoName,
"STORAGE": storage,
"SOURCE_BRANCH": featureBranch,
"DEST_BRANCH": mainBranch,
"SOURCE_BRANCH": mainBranch,
"DEST_BRANCH": featureBranch,
"BRANCH": featureBranch,
}

Expand Down Expand Up @@ -381,6 +381,8 @@ func TestLakectlLogNoMergesWithCommitsAndMerges(t *testing.T) {
RunCmdAndVerifySuccessWithFile(t, Lakectl()+" commit lakefs://"+repoName+"/"+featureBranch+" -m \""+commitMessage+"\"", false, "lakectl_commit", branchVars)

// merge feature into main
branchVars["SOURCE_BRANCH"] = featureBranch
branchVars["DEST_BRANCH"] = mainBranch
RunCmdAndVerifySuccessWithFile(t, Lakectl()+" merge lakefs://"+repoName+"/"+featureBranch+" lakefs://"+repoName+"/"+mainBranch, false, "lakectl_merge_success", branchVars)

// log the commits without merges
Expand Down

0 comments on commit 065bfe4

Please sign in to comment.