Skip to content

Commit

Permalink
Fix classname rename
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jul 18, 2013
1 parent bc531bc commit 0b3f817
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Test/TestCase/Network/ResponseTest.php
Expand Up @@ -20,7 +20,7 @@
use Cake\TestSuite\TestCase;

/**
* Class CakeResponseTest
* Class ResponseTest
*
* @package Cake.Test.Case.Network
*/
Expand Down Expand Up @@ -1489,7 +1489,7 @@ public function testFileRangeInvalid() {
* @return void
*/
public function testLocation() {
$response = new CakeResponse();
$response = new Response();
$this->assertNull($response->location(), 'No header should be set.');
$this->assertNull($response->location('http://example.org'), 'Setting a location should return null');
$this->assertEquals('http://example.org', $response->location(), 'Reading a location should return the value.');
Expand Down

0 comments on commit 0b3f817

Please sign in to comment.