Skip to content

Commit 2fe34b4

Browse files
authored
Update test_yaml.py
Use correct variable name
1 parent 1e75569 commit 2fe34b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/sdk/test_yaml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
def test_read_missing_file() -> None:
99
file_name = "i_do_not_exist.yml"
1010
dir = here / "test_data"
11-
full_path = dir / filename
11+
full_path = dir / file_name
1212
yaml_file = YamlFile(location=full_path)
1313
yaml_file.load_content()
1414
assert not yaml_file.valid

0 commit comments

Comments
 (0)