Correcting quoting style for non-dynamic strings in tests

This commit is contained in:
Michael Pretty 2023-03-21 10:55:08 -04:00
parent 6c9cfaa793
commit 2db2e720c9
1 changed files with 5 additions and 5 deletions

View File

@ -24,8 +24,8 @@ class WC_Update_Functions_Test extends \WC_Unit_Test_Case {
REFERENCES `{$wpdb->prefix}woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE" REFERENCES `{$wpdb->prefix}woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE"
); );
$table_definition = $wpdb->get_var( "SHOW CREATE TABLE {$wpdb->prefix}wc_download_log", 1 ); $table_definition = $wpdb->get_var( "SHOW CREATE TABLE {$wpdb->prefix}wc_download_log", 1 );
$this->assertNotFalse( strpos( $table_definition, "wc_download_log_ib" ) ); $this->assertNotFalse( strpos( $table_definition, 'wc_download_log_ib' ) );
$this->assertNotFalse( strpos( $table_definition, "wc_download_log_ib_2" ) ); $this->assertNotFalse( strpos( $table_definition, 'wc_download_log_ib_2' ) );
include_once WC_ABSPATH . 'includes/wc-update-functions.php'; include_once WC_ABSPATH . 'includes/wc-update-functions.php';
@ -33,7 +33,7 @@ class WC_Update_Functions_Test extends \WC_Unit_Test_Case {
// Verify that the keys were properly removed // Verify that the keys were properly removed
$table_definition = $wpdb->get_var( "SHOW CREATE TABLE {$wpdb->prefix}wc_download_log", 1 ); $table_definition = $wpdb->get_var( "SHOW CREATE TABLE {$wpdb->prefix}wc_download_log", 1 );
$this->assertFalse( strpos( $table_definition, "wc_download_log_ib" ) ); $this->assertFalse( strpos( $table_definition, 'wc_download_log_ib' ) );
} }
public function test_verify_wc_update_352_drop_download_log_fk_removes_foreign_keys() { public function test_verify_wc_update_352_drop_download_log_fk_removes_foreign_keys() {
@ -47,7 +47,7 @@ class WC_Update_Functions_Test extends \WC_Unit_Test_Case {
REFERENCES `{$wpdb->prefix}woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE" REFERENCES `{$wpdb->prefix}woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE"
); );
$table_definition = $wpdb->get_var( "SHOW CREATE TABLE {$wpdb->prefix}wc_download_log", 1 ); $table_definition = $wpdb->get_var( "SHOW CREATE TABLE {$wpdb->prefix}wc_download_log", 1 );
$this->assertNotFalse( strpos( $table_definition, "fk_wc_download_log_permission_id" ) ); $this->assertNotFalse( strpos( $table_definition, 'fk_wc_download_log_permission_id' ) );
include_once WC_ABSPATH . 'includes/wc-update-functions.php'; include_once WC_ABSPATH . 'includes/wc-update-functions.php';
@ -55,7 +55,7 @@ class WC_Update_Functions_Test extends \WC_Unit_Test_Case {
// Verify that the key was properly removed // Verify that the key was properly removed
$table_definition = $wpdb->get_var( "SHOW CREATE TABLE {$wpdb->prefix}wc_download_log", 1 ); $table_definition = $wpdb->get_var( "SHOW CREATE TABLE {$wpdb->prefix}wc_download_log", 1 );
$this->assertFalse( strpos( $table_definition, "fk_wc_download_log_permission_id" ) ); $this->assertFalse( strpos( $table_definition, 'fk_wc_download_log_permission_id' ) );
} }
public function test_verify_wc_update_700_remove_download_log_fk_removes_foreign_keys() { public function test_verify_wc_update_700_remove_download_log_fk_removes_foreign_keys() {