identation fix

This commit is contained in:
Ahmad Nassri
2014-12-17 22:45:58 -05:00
parent b6efa7e1cc
commit c7b73c8316

View File

@@ -1,9 +1,9 @@
<?php
use Unirest\Request as Request;
namespace Unirest;
use Unirest\Request as Request;
define('UPLOAD_FIXTURE', dirname(dirname(__FILE__)) . '/fixtures/upload.txt');
class UnirestTest extends \PHPUnit_Framework_TestCase
@@ -378,6 +378,7 @@ class UnirestTest extends \PHPUnit_Framework_TestCase
'from' => 'mail@mailinator.com',
'file' => $file
);
Request::buildHTTPCurlQuery($body, $postBody);
$this->assertEquals($postBody['file'], $file);
}