Skip to content

Commit

Permalink
Fix pull request issues
Browse files Browse the repository at this point in the history
  • Loading branch information
promans718 committed Oct 9, 2024
1 parent 715922f commit 0d6cd55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion toolium/test/utils/test_dataset_map_param_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,6 @@ def __init__(self):
context.list = ExampleClass()
dataset.behave_context = context

print(context)
with pytest.raises(Exception) as excinfo:
map_param("[CONTEXT:list.cmsScrollableActions.prueba.id]")
assert "the expression 'prueba' was not able to select an element in the list" == str(excinfo.value)
Expand Down
4 changes: 2 additions & 2 deletions toolium/test/utils/test_dataset_replace_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,6 @@ def test_replace_param_title():

def test_replace_param_round():
param = replace_param('[ROUND:7.5::2]')
assert param == "7.50"
assert param == 7.5
param = replace_param('[ROUND:3.33333333::3]')
assert param == "3.333"
assert param == 3.333

0 comments on commit 0d6cd55

Please sign in to comment.