From f5a52dc7042094ff59a5952f1893a6cbeb031596 Mon Sep 17 00:00:00 2001 From: Smoren Date: Fri, 27 Jan 2023 18:23:37 +0300 Subject: [PATCH] `SetAxiomTest`: naming fix. --- tests/SetTheory/SetAxiomsTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/SetTheory/SetAxiomsTest.php b/tests/SetTheory/SetAxiomsTest.php index 14427e958..2445b1aeb 100644 --- a/tests/SetTheory/SetAxiomsTest.php +++ b/tests/SetTheory/SetAxiomsTest.php @@ -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(); @@ -1347,7 +1347,7 @@ public function testNPartialIntersectionIsEmptySetWhenMMoreThanN(int $m, Set $s, $this->assertEquals($emptySet, $partialIntersection); } - public function dataProviderForNPartialIntersectionIsEmptySetWhenMMoreThanN(): array + public function dataProviderForMPartialIntersectionIsEmptySetWhenMMoreThanN(): array { return [ [