Skip to content

Commit

Permalink
SetAxiomTest: naming fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed Feb 2, 2023
1 parent 15c095c commit f5a52dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/SetTheory/SetAxiomsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1327,13 +1327,13 @@ public function dataProviderForNPartialIntersectionIsCompleteIntersection(): arr
* For any M > N M-partial intersection always equals to the empty set.
*
* @test
* @dataProvider dataProviderForNPartialIntersectionIsEmptySetWhenMMoreThanN
* @dataProvider dataProviderForMPartialIntersectionIsEmptySetWhenMMoreThanN
* @param int $m
* @param Set $s
* @param Set ...$others
* @return void
*/
public function testNPartialIntersectionIsEmptySetWhenMMoreThanN(int $m, Set $s, Set ...$others)
public function testMPartialIntersectionIsEmptySetWhenMMoreThanN(int $m, Set $s, Set ...$others)
{
// Given
$emptySet = new Set();
Expand All @@ -1347,7 +1347,7 @@ public function testNPartialIntersectionIsEmptySetWhenMMoreThanN(int $m, Set $s,
$this->assertEquals($emptySet, $partialIntersection);
}

public function dataProviderForNPartialIntersectionIsEmptySetWhenMMoreThanN(): array
public function dataProviderForMPartialIntersectionIsEmptySetWhenMMoreThanN(): array
{
return [
[
Expand Down

0 comments on commit f5a52dc

Please sign in to comment.