From 38906862a3a6ffb3148e5f6ad153bb2f2060e829 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 19 Nov 2018 16:45:19 +1100 Subject: [PATCH] test: use local style includes where possible This removes some assumptions that break building the library in isolation. --- test/algo/search.cpp | 6 +++--- test/array/darray.cpp | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/test/algo/search.cpp b/test/algo/search.cpp index 2a8e3a84..8bf791b3 100644 --- a/test/algo/search.cpp +++ b/test/algo/search.cpp @@ -7,9 +7,9 @@ * 2018, Danny Robson */ -#include -#include -#include +#include "algo/search.hpp" +#include "tap.hpp" +#include "point.hpp" int diff --git a/test/array/darray.cpp b/test/array/darray.cpp index dc14c7e7..27ab4ec2 100644 --- a/test/array/darray.cpp +++ b/test/array/darray.cpp @@ -1,5 +1,6 @@ -#include -#include +#include "tap.hpp" + +#include "array/darray.hpp" int main (int, char**)