Minor Touchup

This commit is contained in:
oleibman
2025-11-13 21:07:19 -08:00
parent 70802fafe6
commit 55098edf99
@@ -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();
}
}