Skip to content

Commit b247957

Browse files
Fix CS/WS issues
1 parent fa0f136 commit b247957

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

tests/NumericComparatorTest.php

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
namespace SebastianBergmann\Comparator;
1111

1212
use const INF;
13+
use function acos;
1314
use PHPUnit\Framework\TestCase;
1415

1516
/**
@@ -48,9 +49,9 @@ public function acceptsSucceedsProvider()
4849
[5.0, 0],
4950
['5', 4.5],
5051
[1.2e3, 7E-10],
51-
[3, \acos(8)],
52-
[\acos(8), 3],
53-
[\acos(8), \acos(8)],
52+
[3, acos(8)],
53+
[acos(8), 3],
54+
[acos(8), acos(8)],
5455
];
5556
}
5657

@@ -109,9 +110,9 @@ public function assertEqualsFailsProvider()
109110
[1.2e3, 1201],
110111
[2.3, 2.5, 0.2],
111112
[3, 3.05, 0.04],
112-
[3, \acos(8)],
113-
[\acos(8), 3],
114-
[\acos(8), \acos(8)],
113+
[3, acos(8)],
114+
[acos(8), 3],
115+
[acos(8), acos(8)],
115116
[1 / 3, 1 - 2 / 3],
116117
[5.5E+123, '5.7E+123'],
117118
[5.5E-123, '5.7E-123'],

0 commit comments

Comments
 (0)