diff --git a/tests/tests/Driver/PhantomjsTest.php b/tests/tests/Driver/PhantomjsTest.php index c1af0d3..6bbb0a2 100644 --- a/tests/tests/Driver/PhantomjsTest.php +++ b/tests/tests/Driver/PhantomjsTest.php @@ -18,8 +18,7 @@ public static function setUpBeforeClass() parent::setUpBeforeClass(); self::$driver = new Driver_Phantomjs(); - self::$driver->base_url('https://85b5d31b11244c8d6302-fabb5009fe9cc97c5f42aa7fac8fcd02.ssl.cf3.rackcdn.com'); - + self::$driver->base_url('http://clippings-spiderling.s3-website-eu-west-1.amazonaws.com'); self::$driver->visit('/remote-form.html'); } diff --git a/tests/tests/Driver/Simple/RequestFactory/HTTPTest.php b/tests/tests/Driver/Simple/RequestFactory/HTTPTest.php index 5155057..53fd939 100644 --- a/tests/tests/Driver/Simple/RequestFactory/HTTPTest.php +++ b/tests/tests/Driver/Simple/RequestFactory/HTTPTest.php @@ -18,15 +18,15 @@ public function setUp() public function test_request() { - $content = $this->factory->execute('GET', 'http://6ca1671dbfe9477b14ce-fabb5009fe9cc97c5f42aa7fac8fcd02.r26.cf3.rackcdn.com/remote-form.html', array('test' => 'value')); + $content = $this->factory->execute('GET', 'http://clippings-spiderling.s3-website-eu-west-1.amazonaws.com/remote-form.html', array('test' => 'value')); $this->assertContains('Author', $content); - $this->assertEquals('http://6ca1671dbfe9477b14ce-fabb5009fe9cc97c5f42aa7fac8fcd02.r26.cf3.rackcdn.com/remote-form.html', $this->factory->current_url()); + $this->assertEquals('http://clippings-spiderling.s3-website-eu-west-1.amazonaws.com/remote-form.html', $this->factory->current_url()); $this->assertEquals('/remote-form.html', $this->factory->current_path()); $this->setExpectedException('Openbuildings\Spiderling\Exception_Curl'); - $this->factory->execute('GET', 'http://6ca1671dbfe9477b14ce-fabb5009fe9cc97c5f42aa7fac8fcd02.r26.cf3.rackcdn.com/not-existst.html'); + $this->factory->execute('GET', 'http://clippings-spiderling.s3-website-eu-west-1.amazonaws.com/not-existst.html'); }