Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyashton committed Dec 19, 2024
1 parent 0112540 commit 07be123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/js-modules/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def test_module_import(network, args):

def compare_app_metadata(expected, actual, api_key_renames, route=[]):
path = ".".join(route)
assert type(expected) == type(
actual
assert isinstance(
actual, type(actual)
), f"Expected same type of values at {path}, found {type(expected)} vs {type(actual)}"

if isinstance(expected, dict):
Expand Down

0 comments on commit 07be123

Please sign in to comment.