From 6c00abab9e96f55b72a50fd7451cddde2c7fe181 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 5 Feb 2020 05:01:55 +0000 Subject: [PATCH] Coding Standards: Fix WPCS issue in [47184]. See #49344. git-svn-id: https://develop.svn.wordpress.org/trunk@47185 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/dbdelta.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/tests/dbdelta.php b/tests/phpunit/tests/dbdelta.php index 8312b2e3a9..2950f27a2a 100644 --- a/tests/phpunit/tests/dbdelta.php +++ b/tests/phpunit/tests/dbdelta.php @@ -50,8 +50,9 @@ class Tests_dbDelta extends WP_UnitTestCase { $wpdb->query( $wpdb->prepare( " - CREATE TABLE {$wpdb->prefix}dbdelta_test ( - id bigint{$this->bigint_display_width} NOT NULL AUTO_INCREMENT, + CREATE TABLE {$wpdb->prefix}dbdelta_test (" . + // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared + "id bigint{$this->bigint_display_width} NOT NULL AUTO_INCREMENT, column_1 varchar(255) NOT NULL, column_2 text, column_3 blob,