Skip to content

Commit 8c87091

Browse files
committed
refactoring
1 parent e4cd91d commit 8c87091

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lam/tests/lib/PdfStructTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public function testExportPDFStructure() {
157157
$expected = [
158158
'title' => 'mytitle',
159159
'foldingMarks' => PDFStructure::FOLDING_STANDARD,
160-
'logo' => 'somelogo',
160+
'logo' => 'somelogo.png',
161161
'sections' => [
162162
[
163163
'type' => 'text',
@@ -223,7 +223,7 @@ public function testImportPDFStructure() {
223223

224224
$this->assertEquals('mytitle', $structure->getTitle());
225225
$this->assertEquals(PDFStructure::FOLDING_STANDARD, $structure->getFoldingMarks());
226-
$this->assertEquals('logo', $structure->getLogo());
226+
$this->assertEquals('logo.png', $structure->getLogo());
227227
$sections = $structure->getSections();
228228
$this->assertEquals(2, count($sections));
229229
$this->assertTrue($sections[0] instanceof PDFTextSection);

0 commit comments

Comments
 (0)