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 185a833 commit b00cdbcCopy full SHA for b00cdbc
βcommands/daemon/settings_test.go
@@ -142,7 +142,9 @@ func TestWrite(t *testing.T) {
142
require.NoError(t, err)
143
144
tempDir := paths.TempDir()
145
- testFolder, _ := tempDir.MkTempDir("testdata")
+ testFolder, err := tempDir.MkTempDir("testdata")
146
+ require.NoError(t, err)
147
+ defer testFolder.RemoveAll()
148
149
// Verifies config files doesn't exist
150
configFile := testFolder.Join("arduino-cli.yml")
0 commit comments