Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
fix: relative path in text testcases
Browse files Browse the repository at this point in the history
  • Loading branch information
jvallesm committed Feb 14, 2024
1 parent d594dc4 commit d0ce3c6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pkg/text/v0/convert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,35 +20,35 @@ func TestConvertToText(t *testing.T) {
}{
{
name: "Convert pdf file",
filepath: "./testdata/test.pdf",
filepath: "testdata/test.pdf",
},
{
name: "Convert docx file",
filepath: "./testdata/test.docx",
filepath: "testdata/test.docx",
},
{
name: "Convert html file",
filepath: "./testdata/test.html",
filepath: "testdata/test.html",
},
{
name: "Convert odt file",
filepath: "./testdata/test.odt",
filepath: "testdata/test.odt",
},
{
name: "Convert rtf file",
filepath: "./testdata/test.rtf",
filepath: "testdata/test.rtf",
},
{
name: "Convert png file",
filepath: "./testdata/test.png",
filepath: "testdata/test.png",
},
{
name: "Convert jpg file",
filepath: "./testdata/test.jpg",
filepath: "testdata/test.jpg",
},
{
name: "Convert tiff file",
filepath: "./testdata/test.tif",
filepath: "testdata/test.tif",
},
}

Expand Down

0 comments on commit d0ce3c6

Please sign in to comment.