Ver código fonte

Replaced product id to fix the failing test case


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22622 44c647ce-9c0f-0410-b52a-842ac1e357ba
torio 15 anos atrás
pai
commit
5e64b306ca
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      tests/Zend/Service/Amazon/OnlineTest.php

+ 2 - 2
tests/Zend/Service/Amazon/OnlineTest.php

@@ -225,7 +225,7 @@ class Zend_Service_Amazon_OnlineTest extends PHPUnit_Framework_TestCase
      */
     public function testItemLookup()
     {
-        $item = $this->_amazon->itemLookup('B0000A432X');
+        $item = $this->_amazon->itemLookup('B0015T963C');
         $this->assertTrue($item instanceof Zend_Service_Amazon_Item);
     }
 
@@ -328,7 +328,7 @@ class Zend_Service_Amazon_OnlineTest extends PHPUnit_Framework_TestCase
      */
     public function testQueryAsin()
     {
-        $item = $this->_query->asin('B0000A432X')->search();
+        $item = $this->_query->asin('B0015T963C')->search();
         $this->assertTrue($item instanceof Zend_Service_Amazon_Item);
     }
 }