Removed Unused Variable in Unit Test

- Removed an optional parameter on with since the variable was not used.

Change-Id: I9794ae07e8904e71dee2cc55cc6ba3c9b71fc06f
This commit is contained in:
Aaron Sheffield 2020-01-16 10:29:22 -06:00
parent 3e1859010b
commit 2c1a95f105
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):