Merge branch 'feature-datacollections'

Conflicts:
	src/Csv.php
This commit is contained in:
Fonata
2018-04-02 14:40:32 +02:00
3 changed files with 33 additions and 5 deletions

View File

@@ -58,8 +58,9 @@ class ConstructTest extends TestCase {
ob_start();
/** @noinspection PhpIncludeInspection */
require $script_file;
$ob_get_clean = ob_get_clean();
if ($script_file != 'download.php') {
$this->assertContains('<td>', ob_get_clean());
$this->assertContains('<td>', $ob_get_clean);
}
}
chdir('..');