We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abd53a0 commit 11a0962Copy full SHA for 11a0962
tests/PhpSpreadsheetTests/SpreadsheetCopyCloneTest.php
@@ -91,7 +91,11 @@ public function testCopyCloneActiveSheet(string $type): void
91
$sheet2 = $this->spreadsheet->createSheet();
92
$sheet3 = $this->spreadsheet->createSheet();
93
$sheet4 = $this->spreadsheet->createSheet();
94
+ $sheet0->getStyle('B1')->getFont()->setName('whatever');
95
+ $sheet1->getStyle('B1')->getFont()->setName('whatever');
96
+ $sheet2->getStyle('B1')->getFont()->setName('whatever');
97
$sheet3->getStyle('B1')->getFont()->setName('whatever');
98
+ $sheet4->getStyle('B1')->getFont()->setName('whatever');
99
$this->spreadsheet->setActiveSheetIndex(2);
100
if ($type === 'copy') {
101
$this->spreadsheet2 = $this->spreadsheet->copy();
0 commit comments