test housekeeping

This commit is contained in:
scawful
2025-08-21 19:01:40 -04:00
parent 9cbae49cb0
commit 7f60ddcd42
5 changed files with 19 additions and 21 deletions

View File

@@ -10,7 +10,7 @@
namespace yaze {
namespace test {
class OverworldTest : public ::testing::Test, public SharedRom {
class OverworldTest : public ::testing::Test {
protected:
void SetUp() override {
// Skip tests on Linux for automated github builds
@@ -20,7 +20,8 @@ class OverworldTest : public ::testing::Test, public SharedRom {
}
void TearDown() override {}
zelda3::Overworld overworld_{rom()};
Rom rom_;
zelda3::Overworld overworld_{&rom_};
};
TEST_F(OverworldTest, OverworldLoadNoRomDataError) {