From 4d81c077553f47c34a107ab95f00655c1939d209 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Thu, 2 Jan 2025 11:37:24 -0800 Subject: [PATCH] add setting of region to env --- src/cmd/cli/command/commands_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cmd/cli/command/commands_test.go b/src/cmd/cli/command/commands_test.go index 2b250d5e..0822f632 100644 --- a/src/cmd/cli/command/commands_test.go +++ b/src/cmd/cli/command/commands_test.go @@ -150,6 +150,7 @@ func TestCommandGates(t *testing.T) { t.Fatalf("Failed to change directory: %v", err) } + t.Setenv("AWS_REGION", "us-west-2") t.Cleanup(func() { os.Chdir(origDir) })