From 12d7870459bdcdc1543c363bea3007ab922efa97 Mon Sep 17 00:00:00 2001 From: Lars Lehtonen Date: Tue, 24 Feb 2026 06:03:22 -0800 Subject: [PATCH] cmd/cloudshell_open: fix unit tests to refer to extant branch master instead of nonexistent main --- cmd/cloudshell_open/clone_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cloudshell_open/clone_test.go b/cmd/cloudshell_open/clone_test.go index b6ec0b99..6cbaddc4 100644 --- a/cmd/cloudshell_open/clone_test.go +++ b/cmd/cloudshell_open/clone_test.go @@ -106,7 +106,7 @@ func TestGitCheckout(t *testing.T) { run(t, "git", "commit", "--allow-empty", "--message", "initial commit") run(t, "git", "branch", "foo") - if err := gitCheckout(tmpDir, "main"); err != nil { + if err := gitCheckout(tmpDir, "master"); err != nil { t.Fatal(err) } if err := gitCheckout(tmpDir, "foo"); err != nil {