Skip to content

Commit 04958a9

Browse files
committed
SetAxiomTest: naming fix.
1 parent ab276de commit 04958a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/SetTheory/SetAxiomsTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,13 +1327,13 @@ public function dataProviderForNPartialIntersectionIsCompleteIntersection(): arr
13271327
* For any M > N M-partial intersection always equals to the empty set.
13281328
*
13291329
* @test
1330-
* @dataProvider dataProviderForNPartialIntersectionIsEmptySetWhenMMoreThanN
1330+
* @dataProvider dataProviderForMPartialIntersectionIsEmptySetWhenMMoreThanN
13311331
* @param int $m
13321332
* @param Set $s
13331333
* @param Set ...$others
13341334
* @return void
13351335
*/
1336-
public function testNPartialIntersectionIsEmptySetWhenMMoreThanN(int $m, Set $s, Set ...$others)
1336+
public function testMPartialIntersectionIsEmptySetWhenMMoreThanN(int $m, Set $s, Set ...$others)
13371337
{
13381338
// Given
13391339
$emptySet = new Set();
@@ -1347,7 +1347,7 @@ public function testNPartialIntersectionIsEmptySetWhenMMoreThanN(int $m, Set $s,
13471347
$this->assertEquals($emptySet, $partialIntersection);
13481348
}
13491349

1350-
public function dataProviderForNPartialIntersectionIsEmptySetWhenMMoreThanN(): array
1350+
public function dataProviderForMPartialIntersectionIsEmptySetWhenMMoreThanN(): array
13511351
{
13521352
return [
13531353
[

0 commit comments

Comments
 (0)