Skip to content

Commit

Permalink
Use groundtruth from testing directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Shreeshrii authored Sep 4, 2017
1 parent 0ed7317 commit f728456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittest/apiexample_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ TEST(TesseractTest, ApiExample)
{
char *outText;
std::locale loc("en_US.UTF-8"); // You can also use "" for the default system locale
std::ifstream file("testfiles/phototest.txt");
std::ifstream file("../testing/phototest.txt");
file.imbue(loc); // Use it for file input
std::string gtText((std::istreambuf_iterator<char>(file)),
std::istreambuf_iterator<char>());
Expand Down

0 comments on commit f728456

Please sign in to comment.