Browse Source

shit i checked in a unit test with an exit; brilliant!

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@16253 44c647ce-9c0f-0410-b52a-842ac1e357ba
wadearnold 16 năm trước cách đây
mục cha
commit
4521c77196
1 tập tin đã thay đổi với 2 bổ sung3 xóa
  1. 2 3
      tests/Zend/Amf/ResponseTest.php

+ 2 - 3
tests/Zend/Amf/ResponseTest.php

@@ -493,7 +493,7 @@ class Zend_Amf_ResponseTest extends PHPUnit_Framework_TestCase
      * Returning a DOMDocument object to AMF is serialized into a XMString ready for E4X
      * 
      * @group ZF-4999
-     *
+     */
     public function testPhpDomDocumentSerializedToAmf3XmlString()
     {
         $sXML = '<root><element><key>a</key><value>b</value></element></root>';
@@ -522,7 +522,6 @@ class Zend_Amf_ResponseTest extends PHPUnit_Framework_TestCase
         // Load the expected response.
         $mockResponse = file_get_contents(dirname(__FILE__) .'/Response/mock/domdocumentAmf3Response.bin');
         
-        exit;
         // Check that the response matches the expected serialized value
         $this->assertEquals($mockResponse, $testResponse);
     }
@@ -531,7 +530,7 @@ class Zend_Amf_ResponseTest extends PHPUnit_Framework_TestCase
      * Returning a SimpleXML object to AMF is serialized into a XMString ready for E4X
      * 
      * @group ZF-4999
-     *
+     */
     public function testSimpleXmlSerializedToAmf3XmlString()
     {
         $sXML = '<root><element><key>a</key><value>b</value></element></root>';