mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-18 22:16:46 +00:00
Minor Touchup
This commit is contained in:
@@ -18,7 +18,8 @@ class InfoTest extends TestCase
|
||||
$sheet->getCell('A1')->setValue('=INFO("' . $typeText . '")');
|
||||
$result = $sheet->getCell('A1')->getCalculatedValue();
|
||||
|
||||
self::assertEquals($expectedResult, $result);
|
||||
self::assertSame($expectedResult, $result);
|
||||
$spreadsheet->disconnectWorksheets();
|
||||
}
|
||||
|
||||
public static function providerINFO(): array
|
||||
@@ -36,6 +37,7 @@ class InfoTest extends TestCase
|
||||
$sheet->getCell('A1')->setValue('=INFO("numfile")');
|
||||
$result = $sheet->getCell('A1')->getCalculatedValue();
|
||||
|
||||
self::assertEquals(3, $result);
|
||||
self::assertSame(3, $result);
|
||||
$spreadsheet->disconnectWorksheets();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user