Browse Source

Change first assert

pull/97/head
swentel 4 years ago
parent
commit
b67bd55d34
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/SanitizeTest.php

+ 1
- 1
tests/SanitizeTest.php View File

@ -121,7 +121,7 @@ class SanitizeTest extends PHPUnit_Framework_TestCase {
$body = $response->getContent();
$data = json_decode($body, true);
$html = $data['data']['content']['html'];
$this->assertNotContains('<iframe>', $html);
$this->assertNotContains('<iframe', $html);
$response = $this->parse(['url' => $url, 'allow-iframe-video' => 'true']);
$body = $response->getContent();

Loading…
Cancel
Save