Skip to content

Commit 04c2d86

Browse files
committed
small fix to tests
1 parent 4431be4 commit 04c2d86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commands/commands_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@ func makeTempSketchbookDir(t *testing.T) func() {
132132
tmp, err := paths.MkTempDir("", "test")
133133
require.NoError(t, err, "making temporary staging dir")
134134
os.Setenv("ARDUINO_SKETCHBOOK_DIR", tmp.String())
135-
fmt.Printf("ARDUINO_SKETCHBOOK_DIR = %s\n", os.Getenv("ARDUINO_DATA_DIR"))
135+
fmt.Printf("ARDUINO_SKETCHBOOK_DIR = %s\n", os.Getenv("ARDUINO_SKETCHBOOK_DIR"))
136136
return func() {
137137
os.Unsetenv("ARDUINO_SKETCHBOOK_DIR")
138138
tmp.RemoveAll()
139-
fmt.Printf("ARDUINO_SKETCHBOOK_DIR = %s\n", os.Getenv("ARDUINO_DATA_DIR"))
139+
fmt.Printf("ARDUINO_SKETCHBOOK_DIR = %s\n", os.Getenv("ARDUINO_SKETCHBOOK_DIR"))
140140
}
141141
}
142142

0 commit comments

Comments
 (0)