Skip to content

Commit

Permalink
base change
Browse files Browse the repository at this point in the history
  • Loading branch information
paigerube14 committed Nov 26, 2024
1 parent a23f3c8 commit 364bec0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/krkn_lib/tests/base_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ def apply_template(self, template: str):
with tempfile.NamedTemporaryFile(mode="w") as file:
file.write(template)
file.flush()
retrys = 3
while retrys > 0:
retries = 3
while retries > 0:
template_applied = self.lib_k8s.apply_yaml(file.name, namespace="")
if template_applied != None:
return
Expand Down

0 comments on commit 364bec0

Please sign in to comment.