Coding Standards: Fix WPCS issue in [47184].

See #49344.

git-svn-id: https://develop.svn.wordpress.org/trunk@47185 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-02-05 05:01:55 +00:00
parent 629b9a778a
commit 6c00abab9e
1 changed files with 3 additions and 2 deletions

View File

@ -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,