diff --git a/pkg/integration/tests/branch/reset_upstream.go b/pkg/integration/tests/branch/unset_upstream.go similarity index 94% rename from pkg/integration/tests/branch/reset_upstream.go rename to pkg/integration/tests/branch/unset_upstream.go index 70300c312..c38c0cd58 100644 --- a/pkg/integration/tests/branch/reset_upstream.go +++ b/pkg/integration/tests/branch/unset_upstream.go @@ -5,7 +5,7 @@ import ( . "github.com/jesseduffield/lazygit/pkg/integration/components" ) -var ResetUpstream = NewIntegrationTest(NewIntegrationTestArgs{ +var UnsetUpstream = NewIntegrationTest(NewIntegrationTestArgs{ Description: "Reset the upstream of a branch", ExtraCmdArgs: []string{}, Skip: false, diff --git a/pkg/integration/tests/test_list.go b/pkg/integration/tests/test_list.go index cea838380..5716507f8 100644 --- a/pkg/integration/tests/test_list.go +++ b/pkg/integration/tests/test_list.go @@ -52,10 +52,10 @@ var tests = []*components.IntegrationTest{ branch.Rename, branch.Reset, branch.ResetToUpstream, - branch.ResetUpstream, branch.SetUpstream, branch.ShowDivergenceFromUpstream, branch.Suggestions, + branch.UnsetUpstream, cherry_pick.CherryPick, cherry_pick.CherryPickConflicts, cherry_pick.CherryPickDuringRebase,