diff --git a/pkg/sanity/README.md b/pkg/sanity/README.md index fd30f192..773bf33c 100644 --- a/pkg/sanity/README.md +++ b/pkg/sanity/README.md @@ -15,12 +15,9 @@ Golang `TestXXX` functions. For example: func TestMyDriver(t *testing.T) { // Setup the full driver and its environment ... setup driver ... - config := &sanity.Config{ - TargetPath: ... - StagingPath: ... - Address: endpoint, - } - + config := sanity.NewTestConfig() + // Set configuration options as needed + cfg.Address = endpoint // Now call the test suite sanity.Test(t, config)