Thiemo Mättig (WMDE) has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/317474

Change subject: Fix PHPCS DoubleQuoteUsage violations
......................................................................

Fix PHPCS DoubleQuoteUsage violations

Change-Id: I465e20e1548d459d0253d3e87ebf098df57fded4
---
M tests/phpunit/N3QuoterTest.php
1 file changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/purtle refs/changes/74/317474/1

diff --git a/tests/phpunit/N3QuoterTest.php b/tests/phpunit/N3QuoterTest.php
index b92d7ed..9e3758f 100644
--- a/tests/phpunit/N3QuoterTest.php
+++ b/tests/phpunit/N3QuoterTest.php
@@ -53,11 +53,11 @@
 
        public function provideEscapeLiteral() {
                return array(
-                       array( "Hello World", 'Hello World' ),
+                       array( 'Hello World', 'Hello World' ),
                        array( "Hello\nWorld", 'Hello\nWorld' ),
                        array( "Hello\tWorld", 'Hello\tWorld' ),
-                       array( "Hällo Wörld", 'Hällo Wörld', false ),
-                       array( "Hällo Wörld", 'H\u00E4llo W\u00F6rld', true ),
+                       array( 'Hällo Wörld', 'Hällo Wörld', false ),
+                       array( 'Hällo Wörld', 'H\u00E4llo W\u00F6rld', true ),
                        array( '\a', '\\\\a' ),
                        array( "\x7\v\0\x1F", '\u0007\u000B\u0000\u001F' ),
 

-- 
To view, visit https://gerrit.wikimedia.org/r/317474
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I465e20e1548d459d0253d3e87ebf098df57fded4
Gerrit-PatchSet: 1
Gerrit-Project: purtle
Gerrit-Branch: master
Gerrit-Owner: Thiemo Mättig (WMDE) <thiemo.maet...@wikimedia.de>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to