Skip to content

Commit

Permalink
Fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Aug 27, 2017
1 parent 5984e24 commit 9502762
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions application/tests/_ci_phpunit_test/CIPHPUnitTestCase.php
Expand Up @@ -35,7 +35,7 @@ class CIPHPUnitTestCase extends PHPUnit_Framework_TestCase
* @var CI_Controller CodeIgniter instance
*/
protected $CI;

protected $class_map = [
'request' => 'CIPHPUnitTestRequest',
'double' => 'CIPHPUnitTestDouble',
Expand Down Expand Up @@ -66,7 +66,7 @@ public static function setUpBeforeClass()
'index.php',
];
$_SERVER['argc'] = 1;

// Reset current directroy
chdir(FCPATH);
}
Expand Down Expand Up @@ -302,7 +302,7 @@ public function warningOn()

/**
* Asserts HTTP response code
*
*
* @param int $code
*/
public function assertResponseCode($code)
Expand All @@ -319,7 +319,7 @@ public function assertResponseCode($code)

/**
* Asserts HTTP response header
*
*
* @param string $name header name
* @param string $value header value
*/
Expand All @@ -342,7 +342,7 @@ public function assertResponseHeader($name, $value)

/**
* Asserts HTTP response cookie
*
*
* @param string $name cookie name
* @param string|array $value cookie value|array of cookie params
* @param bool $allow_duplicate whether to allow duplicated cookies
Expand Down Expand Up @@ -404,7 +404,7 @@ public function assertResponseCookie($name, $value, $allow_duplicate = false)

/**
* Asserts Redirect
*
*
* @param string $uri URI to redirect
* @param int $code response code
*/
Expand Down

0 comments on commit 9502762

Please sign in to comment.