Skip to content

Commit 486bb3f

Browse files
committed
consistent var naming
1 parent c214476 commit 486bb3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

agent/agentcontainers/devcontainercli_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ func TestDevcontainerCLI_Up_ArgsAndParsing(t *testing.T) {
110110
t.Setenv("TEST_DEVCONTAINER_WANT_ERROR", fmt.Sprintf("%v", tt.wantError))
111111
t.Setenv("TEST_DEVCONTAINER_LOG_FILE", filepath.Join("testdata", "devcontainercli", "parse", tt.logFile))
112112

113-
cli := agentcontainers.NewDevcontainerCLI(logger, testExecer)
114-
containerID, err := cli.Up(ctx, tt.workspace, tt.config, tt.opts...)
113+
dccli := agentcontainers.NewDevcontainerCLI(logger, testExecer)
114+
containerID, err := dccli.Up(ctx, tt.workspace, tt.config, tt.opts...)
115115
if tt.wantError {
116116
assert.Error(t, err, "want error")
117117
assert.Empty(t, containerID, "expected empty container ID")

0 commit comments

Comments
 (0)