From 5afaecf1eedec7f428b5f015e4b17fe663c068c1 Mon Sep 17 00:00:00 2001 From: scawful Date: Sun, 19 Jan 2025 19:14:53 -0500 Subject: [PATCH] Refactor test includes --- test/rom_test.cc | 2 +- test/{core => }/testing.h | 0 test/zelda3/message_test.cc | 2 +- test/zelda3/overworld_test.cc | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename test/{core => }/testing.h (100%) diff --git a/test/rom_test.cc b/test/rom_test.cc index 3c46a544..d03878eb 100644 --- a/test/rom_test.cc +++ b/test/rom_test.cc @@ -5,7 +5,7 @@ #include "absl/status/status.h" #include "absl/status/statusor.h" -#include "test/core/testing.h" +#include "test/testing.h" namespace yaze { namespace test { diff --git a/test/core/testing.h b/test/testing.h similarity index 100% rename from test/core/testing.h rename to test/testing.h diff --git a/test/zelda3/message_test.cc b/test/zelda3/message_test.cc index 95321983..5ca28ab0 100644 --- a/test/zelda3/message_test.cc +++ b/test/zelda3/message_test.cc @@ -2,7 +2,7 @@ #include "app/editor/message/message_data.h" #include "app/editor/message/message_editor.h" -#include "test/core/testing.h" +#include "test/testing.h" namespace yaze { namespace test { diff --git a/test/zelda3/overworld_test.cc b/test/zelda3/overworld_test.cc index 1df0631c..8546566d 100644 --- a/test/zelda3/overworld_test.cc +++ b/test/zelda3/overworld_test.cc @@ -6,7 +6,7 @@ #include "app/rom.h" #include "app/zelda3/overworld/overworld.h" #include "app/zelda3/overworld/overworld_map.h" -#include "test/core/testing.h" +#include "test/testing.h" namespace yaze { namespace test {