From 006922b644c849dc2afa7b3952e9912932463827 Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Thu, 22 Apr 2021 23:44:29 +0200 Subject: [PATCH] test: fix include path in libadgtest Most of the header files are installed in another folder, so include with quotes is inappropriate. --- src/tests/adg-test.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/tests/adg-test.c b/src/tests/adg-test.c index 3f6a62f3..5aca01ab 100644 --- a/src/tests/adg-test.c +++ b/src/tests/adg-test.c @@ -18,15 +18,15 @@ */ -#include "adg-internal.h" -#include "adg-model.h" -#include "adg-trail.h" -#include "adg-path.h" -#include "adg-container.h" -#include "adg-stroke.h" -#include "adg-table.h" -#include "adg-title-block.h" -#include "adg-canvas.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include #include "adg-test.h" -- 2.11.4.GIT