From 2daf1ce538f72e3bfe5474c6c930975a000656e8 Mon Sep 17 00:00:00 2001 From: colemanw Date: Thu, 2 Nov 2023 13:18:03 -0400 Subject: [PATCH] APIv4 - > test coverage for Search Download by 1 line --- .../tests/phpunit/api/v4/SearchDisplay/SearchDownloadTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchDownloadTest.php b/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchDownloadTest.php index 9a1d211b7e..bc8d2d8eec 100644 --- a/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchDownloadTest.php +++ b/ext/search_kit/tests/phpunit/api/v4/SearchDisplay/SearchDownloadTest.php @@ -87,6 +87,7 @@ class SearchDownloadTest extends \PHPUnit\Framework\TestCase implements Headless $header = array_shift($download); $this->assertEquals('Duration Subject', $header[0]); + $this->assertEquals('Details', $header[1]); foreach ($download as $rowNum => $data) { $this->assertEquals($sampleData[$rowNum]['duration'] . ' ' . $subject, $data[0]); -- 2.25.1