Skip to content

Commit

Permalink
Merge pull request #199 from niladrih/tests
Browse files Browse the repository at this point in the history
fix(BDD-tests): fix resize test validation
  • Loading branch information
Vishnu Attur committed Oct 1, 2022
2 parents c414a73 + 982d3eb commit 71cb1cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ func verifyIncreasedSizeInAppPod(deployName string) {
if err != nil {
return fmt.Errorf("failed to convert volume size string. stdout: %s, err: %v", stdout, err)
}
if volSize != 10255636 {
return fmt.Errorf("failed to match volume size. actual: %d, expected: %d", volSize, 10255636)
if volSize != 10232668 {
return fmt.Errorf("failed to match volume size. actual: %d, expected: %d", volSize, 10232668)
}
return nil
}, timeout).Should(Succeed())
Expand Down

0 comments on commit 71cb1cb

Please sign in to comment.