Remove redundant #include path component.
Using the parent '../' path component in #include statements makes
the codebase more rigid and is redundant due to proper -I use.
Signed-off-by: Jon A. Cruz <jonc@osg.samsung.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
diff --git a/tests/weston-test.c b/tests/weston-test.c
index e939350..f4fa5ce 100644
--- a/tests/weston-test.c
+++ b/tests/weston-test.c
@@ -31,13 +31,13 @@
#include <unistd.h>
#include <string.h>
-#include "../src/compositor.h"
+#include "src/compositor.h"
#include "weston-test-server-protocol.h"
#ifdef ENABLE_EGL
#include <EGL/egl.h>
#include <EGL/eglext.h>
-#include "../src/weston-egl-ext.h"
+#include "src/weston-egl-ext.h"
#endif /* ENABLE_EGL */
struct weston_test {