lufia2ac: rearrange tests to comply with new conventions (#5001)

This commit is contained in:
el-u
2025-05-15 19:58:10 +02:00
committed by GitHub
parent 2a0d0b4224
commit 15e6383aad
4 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +0,0 @@
from test.bases import WorldTestBase
class L2ACTestBase(WorldTestBase):
game = "Lufia II Ancient Cave"

View File

@@ -0,0 +1,5 @@
from test.bases import WorldTestBase
class L2ACTestBase(WorldTestBase):
game = "Lufia II Ancient Cave"

View File

@@ -2,7 +2,7 @@ from argparse import Namespace
from BaseClasses import PlandoOptions
from Generate import handle_option
from . import L2ACTestBase
from .bases import L2ACTestBase
from ..Options import CustomItemPool

View File

@@ -1,4 +1,4 @@
from . import L2ACTestBase
from .bases import L2ACTestBase
class TestDefault(L2ACTestBase):