🎨 Align dataprovider elements

This commit is contained in:
Pierre Goiffon
2021-06-29 16:45:34 +02:00
parent 195056492e
commit e32e275f40

View File

@@ -443,10 +443,10 @@ class UtilsTest extends \Combodo\iTop\Test\UnitTest\ItopTestCase
{
return [
'123 int value' => ['123', 123],
'-1 no limit' => ['-1', -1],
'56k' => ['56k', 56 * 1024],
'512M' => ['512M', 512 * 1024 * 1024],
'2G' => ['2G', 2 * 1024 * 1024 * 1024],
'-1 no limit' => ['-1', -1],
'56k' => ['56k', 56 * 1024],
'512M' => ['512M', 512 * 1024 * 1024],
'2G' => ['2G', 2 * 1024 * 1024 * 1024],
];
}
}