Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Nemere committed Nov 11, 2024
1 parent eeb814a commit 67f1881
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/dataimport/sdfToRSI/sdfToRSI_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ func Example_ConvertSDFtoRSI() {

fmt.Printf("mkdir worked: %v\n", os.MkdirAll("./output", 0777) == nil)
wd, err := os.Getwd()
fmt.Printf("wd: %v|%v\n", wd, err)
fmt.Printf("Getwd: %v\n", err == nil)
p := filepath.Join(wd, "output")
files, rtts, err := ConvertSDFtoRSIs("./test-data/sdf_raw.txt", p)
fmt.Printf("%v, %v: %v\n", files, rtts, err)

// Output:
// mkdir worked: true
// Getwd: true
// [RSI-208536069.csv RSI-208601602.csv], [208536069 208601602]: <nil>
}

Expand Down

0 comments on commit 67f1881

Please sign in to comment.