Skip to content

Commit

Permalink
Minor coding style cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kiall committed Jan 16, 2011
1 parent 339f19b commit 53b6cd6
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion tests/kohana/ArrTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
Class Kohana_ArrTest extends Unittest_TestCase
class Kohana_ArrTest extends Unittest_TestCase
{
/**
* Provides test data for test_callback()
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/CLITest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
Class Kohana_CLITest extends Unittest_TestCase
class Kohana_CLITest extends Unittest_TestCase
{

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/ConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
Class Kohana_ConfigTest extends Unittest_TestCase
class Kohana_ConfigTest extends Unittest_TestCase
{

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/CookieTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
Class Kohana_CookieTest extends Unittest_TestCase
class Kohana_CookieTest extends Unittest_TestCase
{

protected $_default_salt = 'AdaoidadnA£ASDNadnaoiwdnawd';
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/HTMLTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
Class Kohana_HTMLTest extends Unittest_TestCase
class Kohana_HTMLTest extends Unittest_TestCase
{
protected $environmentDefault = array(
'Kohana::$base_url' => '/kohana/',
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/Http/Header/ValueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaphp.com/license
*/
Class Kohana_HTTP_Header_ValueTest extends Unittest_TestCase
class Kohana_HTTP_Header_ValueTest extends Unittest_TestCase
{
/**
* If the header value is composed of a key value pair then the parser
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/NumTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
Class Kohana_NumTest extends Unittest_TestCase
class Kohana_NumTest extends Unittest_TestCase
{
protected $default_locale;

Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/SecurityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @category Tests
*/

Class Kohana_SecurityTest extends Unittest_TestCase
class Kohana_SecurityTest extends Unittest_TestCase
{
/**
* Provides test data for test_envode_php_tags()
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/SessionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
Class Kohana_SessionTest extends Unittest_TestCase
class Kohana_SessionTest extends Unittest_TestCase
{

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/TextTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @package Kohana
* @category Tests
*/
Class Kohana_TextTest extends Unittest_TestCase
class Kohana_TextTest extends Unittest_TestCase
{

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/URLTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
Class Kohana_URLTest extends Unittest_TestCase
class Kohana_URLTest extends Unittest_TestCase
{
/**
* Default values for the environment, see setEnvironment
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/ValidTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
Class Kohana_ValidTest extends Unittest_TestCase
class Kohana_ValidTest extends Unittest_TestCase
{

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/kohana/ValidationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @copyright (c) 2008-2011 Kohana Team
* @license http://kohanaframework.org/license
*/
Class Kohana_ValidationTest extends Unittest_TestCase
class Kohana_ValidationTest extends Unittest_TestCase
{
/**
* Tests Validation::factory()
Expand Down

0 comments on commit 53b6cd6

Please sign in to comment.