Use relative paths for local includes.
diff --git a/tests/test-encode-decode-data.cpp b/tests/test-encode-decode-data.cpp
index 39ec4f1..ad10650 100644
--- a/tests/test-encode-decode-data.cpp
+++ b/tests/test-encode-decode-data.cpp
@@ -7,8 +7,8 @@
 #include <sstream>
 #include <iostream>
 #include <time.h>
-#include <ndn-cpp/data.hpp>
-#include <ndn-cpp/key-chain.hpp>
+#include "../ndn-cpp/data.hpp"
+#include "../ndn-cpp/key-chain.hpp"
 
 using namespace std;
 using namespace ndn;
diff --git a/tests/test-encode-decode-interest.cpp b/tests/test-encode-decode-interest.cpp
index 5f26114..26d8269 100644
--- a/tests/test-encode-decode-interest.cpp
+++ b/tests/test-encode-decode-interest.cpp
@@ -6,7 +6,7 @@
 #include <cstdlib>
 #include <sstream>
 #include <iostream>
-#include <ndn-cpp/interest.hpp>
+#include "../ndn-cpp/interest.hpp"
 
 using namespace std;
 using namespace ndn;
diff --git a/tests/test-get-async.cpp b/tests/test-get-async.cpp
index 901c70e..da02c81 100644
--- a/tests/test-get-async.cpp
+++ b/tests/test-get-async.cpp
@@ -6,9 +6,7 @@
 #include <cstdlib>
 #include <sstream>
 #include <iostream>
-#include <ndn-cpp/interest.hpp>
-#include <ndn-cpp/data.hpp>
-#include <ndn-cpp/face.hpp>
+#include "../ndn-cpp/face.hpp"
 
 using namespace std;
 using namespace ndn;