mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-09-16 13:26:31 +00:00
Skip Digest Access Authentication test on HHVM
This commit is contained in:
@@ -534,6 +534,12 @@ class CurlTest extends PHPUnit_Framework_TestCase
|
||||
|
||||
public function testDigestHttpAuth()
|
||||
{
|
||||
// Skip Digest Access Authentication test on HHVM.
|
||||
// https://github.com/facebook/hhvm/issues/5201
|
||||
if (defined('HHVM_VERSION')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$username = 'myusername';
|
||||
$password = 'mypassword';
|
||||
$invalid_password = 'anotherpassword';
|
||||
|
||||
Reference in New Issue
Block a user