Skip to content

Commit

Permalink
Fix default value test
Browse files Browse the repository at this point in the history
  • Loading branch information
andylibrian committed Mar 31, 2024
1 parent a65d7ef commit ddea72b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/tarianctl/cmd/install/defaultValues_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ func TestNatsHelmDefaultValues(t *testing.T) {
t.Errorf("natsValuesFile does not contain 'size: 128Mi' in MemStorage")
}

if !containsSubstring(string(yamlContent), "size: 50Mi") {
t.Errorf("natsValuesFile does not contain 'size: 50Mi' in FileStorage")
if !containsSubstring(string(yamlContent), "size: 200Mi") {
t.Errorf("natsValuesFile does not contain 'size: 200Mi' in FileStorage")
}
}

Expand Down

0 comments on commit ddea72b

Please sign in to comment.