From 1d838ea887fed7e9b9a83cd33c92514786967a80 Mon Sep 17 00:00:00 2001 From: v-kaywon Date: Mon, 24 Jul 2017 17:40:01 -0700 Subject: [PATCH] clean up --- test/functional/setup/setup_dbs.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/functional/setup/setup_dbs.py b/test/functional/setup/setup_dbs.py index 3cef7185..2b8f7208 100644 --- a/test/functional/setup/setup_dbs.py +++ b/test/functional/setup/setup_dbs.py @@ -46,15 +46,9 @@ def executeBulkCopy(conn_options, dbname, tblname, datafile): executeCommmand(inst_command) def setupAE( conn_options, dbname ): - print("**********In setupAE**********") if platform.system() == 'Windows': # import self signed certificate - #dir_name = os.path.realpath(__file__) - #cert_name = os.path.join(dir_name, "PHPcert.pfx") - #inst_command = "certutil -user -p '' -importPFX My " + cert_name + " NoRoot" inst_command = "certutil -user -p '' -importPFX My PHPcert.pfx NoRoot" - print("**********In Windows**********") - print(inst_command) executeCommmand(inst_command) # create Column Master Key and Column Encryption Key executeSQLscript('ae_keys.sql', conn_options, dbname)