Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Aug 8, 2024
1 parent a290392 commit 5321800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Framework/OutputTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function test_download_headers()
$this->assertCount(3, $output->headers);
$this->assertContains('Content-Disposition: attachment; filename="test"', $output->headers);
$this->assertContains('Content-Type: application/octet-stream', $output->headers);
$this->assertContains('Content-Security-Policy: default-src \'none\'', $output->headers);
$this->assertContains('Content-Security-Policy: default-src \'none\'; img-src \'self\'', $output->headers);

// Invalid content type
$output->reset();
Expand Down

0 comments on commit 5321800

Please sign in to comment.