Skip to content

Commit

Permalink
rebasing and enabling integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tulsishah committed Jun 10, 2024
1 parent 40329cc commit c58d61b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tools/integration_tests/operations/operations_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,16 @@ func createMountConfigsAndEquivalentFlags() (flags [][]string) {
filePath3 := setup.YAMLConfigFile(mountConfig3, "config3.yaml")
flags = append(flags, []string{"--config-file=" + filePath3})

mountConfig4 := config.MountConfig{
EnableHNS: true,
LogConfig: config.LogConfig{
Severity: config.TRACE,
LogRotateConfig: config.DefaultLogRotateConfig(),
},
}
filePath4 := setup.YAMLConfigFile(mountConfig4, "config4.yaml")
flags = append(flags, []string{"--config-file=" + filePath4})

return flags
}

Expand Down

0 comments on commit c58d61b

Please sign in to comment.