You are here

public function ResponseTest::testRemovesPreviouslyAddedHeaderOfDifferentCase in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/guzzlehttp/psr7/tests/ResponseTest.php \GuzzleHttp\Tests\Psr7\ResponseTest::testRemovesPreviouslyAddedHeaderOfDifferentCase()

File

vendor/guzzlehttp/psr7/tests/ResponseTest.php, line 132

Class

ResponseTest
@covers GuzzleHttp\Psr7\MessageTrait @covers GuzzleHttp\Psr7\Response

Namespace

GuzzleHttp\Tests\Psr7

Code

public function testRemovesPreviouslyAddedHeaderOfDifferentCase() {
  $r = new Response(200, [
    'Foo' => 'Bar',
  ]);
  $r2 = $r
    ->withHeader('foo', 'Bam');
  $this
    ->assertNotSame($r, $r2);
  $this
    ->assertEquals('Bam', $r2
    ->getHeaderLine('Foo'));
}