[localnet] Fix type in utils.py

rosetta
Daniel Van Der Maden 4 years ago
parent f704c8969f
commit 735ce7276a
  1. 2
      localnet/tests/utils.py

@ -52,7 +52,7 @@ def is_valid_json_rpc(response):
def assert_no_null_in_list(lst):
assert isinstance(lst, list), f"Sanity check: expected lst to of type list not {type(lst)}"
assert isinstance(lst, list), f"Sanity check: expected lst to be of type list not {type(lst)}"
assert None not in lst, f"Expected no nulls in {lst}"

Loading…
Cancel
Save