diff options
author | Aaron Schulz <aschulz@wikimedia.org> | 2019-03-06 09:17:27 -0800 |
---|---|---|
committer | Aaron Schulz <aschulz@wikimedia.org> | 2019-03-06 09:17:30 -0800 |
commit | cb15755e92513eb61dcea6d7a0c0930374efdb86 (patch) | |
tree | 1ab39768b32bada13619749b5dd144fe31fe25ba /tests/phpunit/includes/api/ApiUnblockTest.php | |
parent | 7110e89e542f972bc148ece238829f00fb2e1053 (diff) | |
download | mediawikicore-cb15755e92513eb61dcea6d7a0c0930374efdb86.tar.gz mediawikicore-cb15755e92513eb61dcea6d7a0c0930374efdb86.zip |
Normalize use of "INNER JOIN" to "JOIN" in database queries
The ANSI SQL default join type is INNER and this might save
some line breaks here and there.
Change-Id: Ibd39976f46ca3f9b71190d3b60b76ca085787a00
Diffstat (limited to 'tests/phpunit/includes/api/ApiUnblockTest.php')
-rw-r--r-- | tests/phpunit/includes/api/ApiUnblockTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit/includes/api/ApiUnblockTest.php b/tests/phpunit/includes/api/ApiUnblockTest.php index 6ebd835cf66a..ea39da70b22e 100644 --- a/tests/phpunit/includes/api/ApiUnblockTest.php +++ b/tests/phpunit/includes/api/ApiUnblockTest.php @@ -127,8 +127,8 @@ class ApiUnblockTest extends ApiTestCase { __METHOD__, [], [ - 'change_tag' => [ 'INNER JOIN', 'ct_log_id = log_id' ], - 'change_tag_def' => [ 'INNER JOIN', 'ctd_id = ct_tag_id' ], + 'change_tag' => [ 'JOIN', 'ct_log_id = log_id' ], + 'change_tag_def' => [ 'JOIN', 'ctd_id = ct_tag_id' ], ] ) ); } |