-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed582b7
commit b913f01
Showing
1 changed file
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
from tests.test_lib import parse_and_build_compare | ||
from tests.test_lib import parse_build_compare_editor | ||
|
||
from mercury_engine_data_structures.formats.bmsmd import Bmsmd | ||
from mercury_engine_data_structures.game_check import Game | ||
|
||
|
||
def test_bmsmd(samus_returns_path): | ||
file_path = samus_returns_path.joinpath(r"gui\minimaps\c10_samus.bmsmd") | ||
parse_and_build_compare( | ||
Bmsmd, Game.SAMUS_RETURNS, file_path | ||
def test_bmsmd(samus_returns_tree): | ||
parse_build_compare_editor( | ||
Bmsmd, samus_returns_tree, r"gui/minimaps/c10_samus.bmsmd" | ||
) |