We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a21d86d + 14ca020 commit 27150ccCopy full SHA for 27150cc
result/result_test.go
@@ -30,7 +30,9 @@ import (
30
func TestWriteReport(t *testing.T) {
31
flags := test.ConfigurationFlags()
32
33
- projectPaths := []string{"/foo"}
+ projectPath, err := os.Getwd() // Path to an arbitrary folder that is guaranteed to exist.
34
+ require.Nil(t, err)
35
+ projectPaths := []string{projectPath}
36
37
reportFolderPathString, err := ioutil.TempDir("", "arduino-check-result-TestWriteReport")
38
require.Nil(t, err)
0 commit comments