diff options
author | Antoine Musso <hashar@users.mediawiki.org> | 2011-03-08 07:27:18 +0000 |
---|---|---|
committer | Antoine Musso <hashar@users.mediawiki.org> | 2011-03-08 07:27:18 +0000 |
commit | e29fa6eef918ac870cdd3aaf65132abfa0957793 (patch) | |
tree | 4a38584fae99348fc8a5b0e2f0184f5ca0e6fa26 /tests/phpunit/includes/HttpTest.php | |
parent | 8411b6df62ea7c22b86784a51eb73c4deb735431 (diff) | |
download | mediawikicore-e29fa6eef918ac870cdd3aaf65132abfa0957793.tar.gz mediawikicore-e29fa6eef918ac870cdd3aaf65132abfa0957793.zip |
switch 'column' for 'colon'
I always thought the colon and semicolon punctuation marks were named after
their architectural equivalent: column. At least, to me, it made more sens
than using a term relating to thedigestive system.
Per Nikerabbit r83296
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/83515
Diffstat (limited to 'tests/phpunit/includes/HttpTest.php')
-rw-r--r-- | tests/phpunit/includes/HttpTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit/includes/HttpTest.php b/tests/phpunit/includes/HttpTest.php index 5d86952687ab..11ebd30ef275 100644 --- a/tests/phpunit/includes/HttpTest.php +++ b/tests/phpunit/includes/HttpTest.php @@ -555,7 +555,7 @@ class HttpTest extends MediaWikiTestCase { array( false, 'telnet://host', 'Reject telnet scheme' ), # :\/\/ - double slashes - array( false, 'http//example.org', 'Reject missing column in protocol' ), + array( false, 'http//example.org', 'Reject missing colon in protocol' ), array( false, 'http:/example.org', 'Reject missing slash in protocol' ), array( false, 'http:example.org', 'Must have two slashes' ), # Following fail since hostname can be made of anything @@ -568,7 +568,7 @@ class HttpTest extends MediaWikiTestCase { # (\S+) - host part is made of anything not whitespaces array( false, 'http://!"èèè¿¿¿~~\'', 'hostname is made of any non whitespace' ), - array( false, 'http://exam:ple.org/', 'hostname can not use columns!' ), + array( false, 'http://exam:ple.org/', 'hostname can not use colons!' ), # (:[0-9]+)? - port number array( true, 'http://example.org:80/' ), |