There was an error while loading. Please reload this page.
1 parent e4cd91d commit 8c87091Copy full SHA for 8c87091
1 file changed
lam/tests/lib/PdfStructTest.php
@@ -157,7 +157,7 @@ public function testExportPDFStructure() {
157
$expected = [
158
'title' => 'mytitle',
159
'foldingMarks' => PDFStructure::FOLDING_STANDARD,
160
- 'logo' => 'somelogo',
+ 'logo' => 'somelogo.png',
161
'sections' => [
162
[
163
'type' => 'text',
@@ -223,7 +223,7 @@ public function testImportPDFStructure() {
223
224
$this->assertEquals('mytitle', $structure->getTitle());
225
$this->assertEquals(PDFStructure::FOLDING_STANDARD, $structure->getFoldingMarks());
226
- $this->assertEquals('logo', $structure->getLogo());
+ $this->assertEquals('logo.png', $structure->getLogo());
227
$sections = $structure->getSections();
228
$this->assertEquals(2, count($sections));
229
$this->assertTrue($sections[0] instanceof PDFTextSection);
0 commit comments