Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardopinosio committed Mar 21, 2024
1 parent 078b0bd commit 25ff198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func TestTextClassificationCli(t *testing.T) {
// write the test data and test recursive reads and processing from folder
testDataDir := path.Join(os.TempDir(), "hugoTestData")
recurseDir := path.Join(testDataDir, "cliRecurseTest")
err := os.MkdirAll(recurseDir, os.ModePerm)
err = os.MkdirAll(recurseDir, os.ModePerm)
check(t, err)
err = os.WriteFile(path.Join(testDataDir, "test-0.jsonl"), textClassificationData, os.ModePerm)
check(t, err)
Expand Down

0 comments on commit 25ff198

Please sign in to comment.