Skip to content

Commit

Permalink
removed legacy test
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog committed Nov 4, 2024
1 parent f0e4b6d commit 35698fd
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions test/schema_parser_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@ def test_error(self, data, kwargs, error):
with pytest.raises(error):
SchemaParser.parse_system(data, **kwargs)

# def test_non_strict_failure(self, system_dict):
# system_dict["name"] = 1234
# value = SchemaParser.parse_system(system_dict, from_string=False, strict=False)
# assert value.get("name") is None
# assert value["version"] == system_dict["version"]

def test_no_modify(self, system_dict):
system_copy = copy.deepcopy(system_dict)
SchemaParser().parse_system(system_dict)
Expand Down

0 comments on commit 35698fd

Please sign in to comment.