Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
romsharon98 committed Nov 11, 2023
1 parent 176a931 commit d21c3b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@ def test_logs_persistent_volume_claim_template_storage_class_name(self):
show_only=["templates/logs-persistent-volume-claim.yaml"],
)
assert "release-name-storage-class" == jmespath.search(
"spec.volumeClaimTemplates[0].spec.storageClassName", docs[0]
"spec.storageClassName", docs[0]
)
2 changes: 1 addition & 1 deletion helm_tests/other/test_dags_persistent_volume_claim.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,5 +125,5 @@ def test_dags_persistent_volume_claim_template_storage_class_name(self):
show_only=["templates/dags-persistent-volume-claim.yaml"],
)
assert "release-name-storage-class" == jmespath.search(
"spec.volumeClaimTemplates[0].spec.storageClassName", docs[0]
"spec.storageClassName", docs[0]
)

0 comments on commit d21c3b6

Please sign in to comment.