summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-02-19 13:51:34 +1100
committerJesse Duffield <jessedduffield@gmail.com>2023-02-19 13:51:37 +1100
commit7201a91b69a18c974bf2ac2f16eeff6d69bd3eeb (patch)
tree1c70a6c630889c8d6a43982bac09581144093c02 /pkg
parent31d796ee750526a0d50d2e8665b104eb9edf1de6 (diff)
remove unneeded config setting
Diffstat (limited to 'pkg')
-rw-r--r--pkg/integration/tests/sync/force_push.go4
-rw-r--r--pkg/integration/tests/sync/pull.go4
-rw-r--r--pkg/integration/tests/sync/pull_and_set_upstream.go4
-rw-r--r--pkg/integration/tests/sync/rename_branch_and_pull.go4
4 files changed, 4 insertions, 12 deletions
diff --git a/pkg/integration/tests/sync/force_push.go b/pkg/integration/tests/sync/force_push.go
index dc24be199..32b094737 100644
--- a/pkg/integration/tests/sync/force_push.go
+++ b/pkg/integration/tests/sync/force_push.go
@@ -9,9 +9,7 @@ var ForcePush = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Push to a remote with new commits, requiring a force push",
ExtraCmdArgs: "",
Skip: false,
- SetupConfig: func(config *config.AppConfig) {
- config.UserConfig.Git.AutoFetch = false
- },
+ SetupConfig: func(config *config.AppConfig) {},
SetupRepo: func(shell *Shell) {
shell.EmptyCommit("one")
shell.EmptyCommit("two")
diff --git a/pkg/integration/tests/sync/pull.go b/pkg/integration/tests/sync/pull.go
index d33f4687d..453740b96 100644
--- a/pkg/integration/tests/sync/pull.go
+++ b/pkg/integration/tests/sync/pull.go
@@ -9,9 +9,7 @@ var Pull = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Pull a commit from the remote",
ExtraCmdArgs: "",
Skip: false,
- SetupConfig: func(config *config.AppConfig) {
- config.UserConfig.Git.AutoFetch = false
- },
+ SetupConfig: func(config *config.AppConfig) {},
SetupRepo: func(shell *Shell) {
shell.EmptyCommit("one")
shell.EmptyCommit("two")
diff --git a/pkg/integration/tests/sync/pull_and_set_upstream.go b/pkg/integration/tests/sync/pull_and_set_upstream.go
index da3211154..93343492c 100644
--- a/pkg/integration/tests/sync/pull_and_set_upstream.go
+++ b/pkg/integration/tests/sync/pull_and_set_upstream.go
@@ -9,9 +9,7 @@ var PullAndSetUpstream = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Pull a commit from the remote, setting the upstream branch in the process",
ExtraCmdArgs: "",
Skip: false,
- SetupConfig: func(config *config.AppConfig) {
- config.UserConfig.Git.AutoFetch = false
- },
+ SetupConfig: func(config *config.AppConfig) {},
SetupRepo: func(shell *Shell) {
shell.EmptyCommit("one")
shell.EmptyCommit("two")
diff --git a/pkg/integration/tests/sync/rename_branch_and_pull.go b/pkg/integration/tests/sync/rename_branch_and_pull.go
index 9c60988e9..57968373d 100644
--- a/pkg/integration/tests/sync/rename_branch_and_pull.go
+++ b/pkg/integration/tests/sync/rename_branch_and_pull.go
@@ -9,9 +9,7 @@ var RenameBranchAndPull = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Rename a branch to no longer match its upstream, then pull from the upstream",
ExtraCmdArgs: "",
Skip: false,
- SetupConfig: func(config *config.AppConfig) {
- config.UserConfig.Git.AutoFetch = false
- },
+ SetupConfig: func(config *config.AppConfig) {},
SetupRepo: func(shell *Shell) {
shell.EmptyCommit("one")
shell.EmptyCommit("two")