Skip to content

Commit

Permalink
Merge pull request #1704 from fabianegli/fix-duplicate-test-name
Browse files Browse the repository at this point in the history
fix repeated test name
  • Loading branch information
ErikDanielsson authored Jul 28, 2022
2 parents 34e7bf7 + 03f0c87 commit 3ddb12d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def test_build_schema_param_int(self):
param = self.schema_obj.build_schema_param("12")
assert param == {"type": "integer", "default": 12}

def test_build_schema_param_int(self):
def test_build_schema_param_float(self):
"""Build a new schema param from a config value (float)"""
param = self.schema_obj.build_schema_param("12.34")
assert param == {"type": "number", "default": 12.34}
Expand Down

0 comments on commit 3ddb12d

Please sign in to comment.