From f7284569ff958d3dfdc3806d633a42a0598e3068 Mon Sep 17 00:00:00 2001 From: Shreeshrii Date: Mon, 4 Sep 2017 10:44:43 +0530 Subject: [PATCH] Use groundtruth from testing directory --- unittest/apiexample_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittest/apiexample_test.cc b/unittest/apiexample_test.cc index 00b030170..f6e85657e 100644 --- a/unittest/apiexample_test.cc +++ b/unittest/apiexample_test.cc @@ -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(file)), std::istreambuf_iterator());