Merge "Removed Unused Variable in Unit Test"

This commit is contained in:
Zuul 2020-01-27 20:43:38 +00:00 committed by Gerrit Code Review
commit 521219740a
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class TestFileHelpers(object):
with open(path, "r") as out_fi:
assert list(yaml.safe_load_all(out_fi)) == [{"a": 1}]
with pytest.raises(ValueError) as _:
with pytest.raises(ValueError):
files.write(object(), path)
def test_file_permissions(self, temp_deployment_files):