File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public function testShouldInterceptStreamWrapper()
2424 VCR ::configure ()->enableLibraryHooks (array ('stream_wrapper ' ));
2525 VCR ::turnOn ();
2626 VCR ::insertCassette ('unittest_streamwrapper_test ' );
27-  $ resultfile_get_contents ('http://google .com ' );
27+  $ resultfile_get_contents ('http://example .com ' );
2828 $ this assertEquals ('This is a stream wrapper test dummy. ' , $ result'Stream wrapper call was not intercepted. ' );
2929 VCR ::eject ();
3030 VCR ::turnOff ();
@@ -39,7 +39,7 @@ public function testShouldInterceptCurl()
3939 VCR ::configure ()->enableLibraryHooks (array ('curl_runkit ' ));
4040 VCR ::turnOn ();
4141 VCR ::insertCassette ('unittest_curl_test ' );
42-  $ chcurl_init ('http://google .com/ ' );
42+  $ chcurl_init ('http://example .com/ ' );
4343 curl_setopt ($ chCURLOPT_RETURNTRANSFER , true );
4444 $ resultcurl_exec ($ ch
4545 curl_close ($ ch
@@ -55,7 +55,7 @@ public function testShouldInterceptGuzzleLibrary()
5555 VCR ::turnOn ();
5656 VCR ::insertCassette ('unittest_guzzle_test ' );
5757 $ clientnew  \Guzzle \Http \Client ();
58-  $ response$ clientget ('http://google .com ' )->send ();
58+  $ response$ clientget ('http://example .com ' )->send ();
5959 $ this assertEquals ('This is a guzzle test dummy. ' , (string ) $ responsegetBody (), 'Guzzle call was not intercepted. ' );
6060 VCR ::eject ();
6161 VCR ::turnOff ();
                         You can’t perform that action at this time. 
           
                  
0 commit comments