Browse Source

CS: fixing comments to @group annotations

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@23372 44c647ce-9c0f-0410-b52a-842ac1e357ba
bittarman 15 years ago
parent
commit
16c8c03ac3
1 changed files with 6 additions and 2 deletions
  1. 6 2
      tests/Zend/View/Helper/ServerUrlTest.php

+ 6 - 2
tests/Zend/View/Helper/ServerUrlTest.php

@@ -155,7 +155,9 @@ class Zend_View_Helper_ServerUrlTest extends PHPUnit_Framework_TestCase
         $this->assertEquals('http://example.com', $url->serverUrl(new stdClass()));
     }
 
-    // ZF-9919
+    /**
+     * @group ZF-9919
+     */
     public function testServerUrlWithScheme()
     {
         $_SERVER['HTTP_SCHEME'] = 'https';
@@ -164,7 +166,9 @@ class Zend_View_Helper_ServerUrlTest extends PHPUnit_Framework_TestCase
         $this->assertEquals('https://example.com', $url->serverUrl());
     }
 
-    // ZF-9919
+    /**
+     * @group ZF-9919
+     */
     public function testServerUrlWithPort()
     {
         $_SERVER['SERVER_PORT'] = 443;