Remove inconsistent fraction tests

This commit is contained in:
Christopher C. Wells 2021-04-07 21:39:51 -07:00
parent c76b1b07c0
commit c088beb78c
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,8 @@ class NumberTest extends TestCase
*/
public function fractionStringFloatsProvider(): array {
return [
['0', 0.0], ['1/8', 1/8], ['1/4', 1/4], ['1/3', 1/3], ['1/2', 1/2],
['2/3', 2/3], ['3/4', 3/4], ['1', 1.0], ['1 1/4', 1.25],
['0', 0.0], ['1/8', 1/8], ['1/4', 1/4], ['1/2', 1/2],
['3/4', 3/4], ['1', 1.0], ['1 1/4', 1.25],
['1 1/2', 1.5], ['2 1/2', 2.5], ['2 3/4', 2.75],
];
}