mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-27 18:57:17 +00:00
test_feature - fix non-unique function name
This commit is contained in:
@@ -1561,7 +1561,7 @@ def the_file_name_should_contain_value(name, value):
|
|||||||
|
|
||||||
|
|
||||||
@then(parsers.parse('the file "{name}" should not contain "{value}"'))
|
@then(parsers.parse('the file "{name}" should not contain "{value}"'))
|
||||||
def the_file_name_should_contain_value(name, value):
|
def the_file_name_should_not_contain_value(name, value):
|
||||||
name = replace_variables(name)
|
name = replace_variables(name)
|
||||||
with open(name, "r") as f:
|
with open(name, "r") as f:
|
||||||
content = f.read()
|
content = f.read()
|
||||||
|
|||||||
Reference in New Issue
Block a user