We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4431be4 commit 04c2d86Copy full SHA for 04c2d86
commands/commands_test.go
@@ -132,11 +132,11 @@ func makeTempSketchbookDir(t *testing.T) func() {
132
tmp, err := paths.MkTempDir("", "test")
133
require.NoError(t, err, "making temporary staging dir")
134
os.Setenv("ARDUINO_SKETCHBOOK_DIR", tmp.String())
135
- fmt.Printf("ARDUINO_SKETCHBOOK_DIR = %s\n", os.Getenv("ARDUINO_DATA_DIR"))
+ fmt.Printf("ARDUINO_SKETCHBOOK_DIR = %s\n", os.Getenv("ARDUINO_SKETCHBOOK_DIR"))
136
return func() {
137
os.Unsetenv("ARDUINO_SKETCHBOOK_DIR")
138
tmp.RemoveAll()
139
140
}
141
142
0 commit comments