From 1781311e6f029f099b01d35014e5fd7ed9388274 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Tue, 21 Feb 2023 19:57:57 -0800 Subject: [PATCH] tests: fix bad includes --- tests/compositing/compositing-tests.cpp | 2 +- tests/timeline/timeline-tests.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/compositing/compositing-tests.cpp b/tests/compositing/compositing-tests.cpp index 8b831e4fd..ba1257f19 100644 --- a/tests/compositing/compositing-tests.cpp +++ b/tests/compositing/compositing-tests.cpp @@ -24,7 +24,7 @@ #include "node/distort/transform/transformdistortnode.h" #include "node/generator/solid/solid.h" #include "node/math/merge/merge.h" -#include "node/project/project.h" +#include "node/project.h" #include "render/rendermanager.h" namespace olive { diff --git a/tests/timeline/timeline-tests.cpp b/tests/timeline/timeline-tests.cpp index 034349e57..6cb72c387 100644 --- a/tests/timeline/timeline-tests.cpp +++ b/tests/timeline/timeline-tests.cpp @@ -23,12 +23,12 @@ #include "node/block/transition/crossdissolve/crossdissolvetransition.h" #include "node/math/math/math.h" #include "node/math/merge/merge.h" -#include "node/project/project.h" +#include "node/project.h" #include "node/project/sequence/sequence.h" -#include "undo/undocommand.h" -#include "widget/timelinewidget/undo/timelineundogeneral.h" -#include "widget/timelinewidget/undo/timelineundopointer.h" #include "testutil.h" +#include "timeline/timelineundogeneral.h" +#include "timeline/timelineundopointer.h" +#include "undo/undocommand.h" namespace olive {