Skip to content

Commit 41f5321

Browse files
authored
Merge pull request php-vcr#252 from php-vcr/fix/integration-tests
Use https for integration tests
2 parents 3780337 + b3cd4a1 commit 41f5321

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/integration/guzzle/6/test/AsyncTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
*/
1111
class AsyncTest extends \PHPUnit_Framework_TestCase
1212
{
13-
const TEST_GET_URL = 'http://api.chew.pro/trbmb';
14-
const TEST_GET_URL_2 = 'http://api.chew.pro/trbmb?foo=42';
13+
const TEST_GET_URL = 'https://api.chew.pro/trbmb';
14+
const TEST_GET_URL_2 = 'https://api.chew.pro/trbmb?foo=42';
1515

1616
public function setUp()
1717
{

tests/integration/guzzle/test/VCR/Example/ExampleHttpClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
*/
1010
class ExampleHttpClientTest extends \PHPUnit_Framework_TestCase
1111
{
12-
const TEST_GET_URL = 'http://api.chew.pro/trbmb';
13-
const TEST_POST_URL = 'http://httpbin.org/post';
12+
const TEST_GET_URL = 'https://api.chew.pro/trbmb';
13+
const TEST_POST_URL = 'https://httpbin.org/post';
1414
const TEST_POST_BODY = '{"foo":"bar"}';
1515

1616
protected $ignoreHeaders = array(

0 commit comments

Comments
 (0)