Skip to content

Commit

Permalink
Remove erroneous args in function call (#91)
Browse files Browse the repository at this point in the history
* Removed erroneous arg from function in test_metadata_field_equal_expected_sequence

* Update pyproject.toml version
  • Loading branch information
CodeGat authored Dec 19, 2024
1 parent bd1ef41 commit aadde47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "model_config_tests"
version = "0.0.8"
version = "0.0.9"
authors = [
{ name = "ACCESS-NRI" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/model_config_tests/qa/test_access_esm1p5_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def test_metadata_field_equal_expected_sequence(self, field, expected, metadata)
field_set: set[str] = set(metadata[field])

assert field_set == expected, error_field_incorrect(
field, "metadata.yaml", "sequence", expected
field, "metadata.yaml", expected
)

@pytest.mark.parametrize(
Expand Down
2 changes: 1 addition & 1 deletion src/model_config_tests/qa/test_access_esm1p6_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def test_metadata_field_equal_expected_sequence(self, field, expected, metadata)
field_set: set[str] = set(metadata[field])

assert field_set == expected, error_field_incorrect(
field, "metadata.yaml", "sequence", expected
field, "metadata.yaml", expected
)

@pytest.mark.parametrize(
Expand Down

0 comments on commit aadde47

Please sign in to comment.