From c1cc2e3e8eba1a8f58bc60d8dbb4f68c745ab71c Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Wed, 16 Sep 2020 10:12:26 -0400 Subject: [PATCH] Fix typo --- testing/controller/controller.go | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/testing/controller/controller.go b/testing/controller/controller.go index 491c244c2b..9a4198de23 100644 --- a/testing/controller/controller.go +++ b/testing/controller/controller.go @@ -39,19 +39,19 @@ func getOpts(opt ...Option) (*controller.TestControllerOpts, error) { } type option struct { - tcOptions *controller.TestControllerOpts - setWithConfigFile bool - setWithConfigText bool - setDisableAuthMethodCreation bool - setDisableDatabaseCreation bool - setDisableDatabaseDesctruction bool - setDefaultAuthMethodId bool - setDefaultLoginName bool - setDefaultPassword bool - setRootKms bool - setWorkerAuthKms bool - setRecoveryKms bool - setDatabaseUrl bool + tcOptions *controller.TestControllerOpts + setWithConfigFile bool + setWithConfigText bool + setDisableAuthMethodCreation bool + setDisableDatabaseCreation bool + setDisableDatabaseDestruction bool + setDefaultAuthMethodId bool + setDefaultLoginName bool + setDefaultPassword bool + setRootKms bool + setWorkerAuthKms bool + setRecoveryKms bool + setDatabaseUrl bool } type Option func(*option) error