Skip to content

Commit f728456

Browse files
authored
Use groundtruth from testing directory
1 parent 0ed7317 commit f728456

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittest/apiexample_test.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ TEST(TesseractTest, ApiExample)
2525
{
2626
char *outText;
2727
std::locale loc("en_US.UTF-8"); // You can also use "" for the default system locale
28-
std::ifstream file("testfiles/phototest.txt");
28+
std::ifstream file("../testing/phototest.txt");
2929
file.imbue(loc); // Use it for file input
3030
std::string gtText((std::istreambuf_iterator<char>(file)),
3131
std::istreambuf_iterator<char>());

0 commit comments

Comments
 (0)