Skip to content

Commit

Permalink
format codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
dav9 committed Dec 15, 2023
1 parent 2ceb2bf commit 0ca5758
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_kubernetes_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ def test_validate_command_fail(self):
# copy back the original file
copyfile(copied_file, original_file)
os.remove(copied_file)
self.assertTrue(captured_out.getvalue().find("invalid '{}' manifest".format(wrong_manifest_kind)) != -1)
self.assertTrue(
captured_out.getvalue().find("invalid '{}' manifest".format(wrong_manifest_kind)) != -1
)

def test_validate_after_compile(self):
sys.argv = [
Expand Down

0 comments on commit 0ca5758

Please sign in to comment.