Skip to content

Commit

Permalink
fix workbook default font;
Browse files Browse the repository at this point in the history
  • Loading branch information
aVadim483 committed Dec 20, 2023
1 parent a19d252 commit 1c3fed4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/FastExcelWriterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ protected function getStyle($cell, $flat = false): array
protected function defaultStyle(): array
{
return [
'font-name' => 'Arial',
'font-name' => 'Calibri',
'font-charset' => '1',
'font-family' => '2',
'font-size' => '10',
'font-family' => '0',
'font-size' => '11',
'fill-pattern' => 'none',
'border-left-style' => null,
'border-right-style' => null,
Expand Down Expand Up @@ -249,7 +249,7 @@ public function testExcelWriter1()

$this->checkDefaultStyle($this->getStyle('a7', true));

unlink($testFileName);
// unlink($testFileName);

$this->excelReader = null;
$this->cells = [];
Expand Down

0 comments on commit 1c3fed4

Please sign in to comment.