From d567126407bd25eee92a3068651d5d2ad46c9dff Mon Sep 17 00:00:00 2001 From: Calum Towers Date: Thu, 29 Feb 2024 21:52:58 +0000 Subject: [PATCH] test: Incorrect Test Outcome --- tests/Unit/Atc/PositionGroupTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Unit/Atc/PositionGroupTest.php b/tests/Unit/Atc/PositionGroupTest.php index 792dfaf1d9..da85625a23 100644 --- a/tests/Unit/Atc/PositionGroupTest.php +++ b/tests/Unit/Atc/PositionGroupTest.php @@ -60,8 +60,8 @@ public function test_detects_as_not_assigned_when_solo_endorsement_expired() $result = $positionGroup->unassignedFor($account); - $this->assertFalse($result->contains($positionGroup)); - $this->assertFalse($result->contains($otherPositionGroup)); + $this->assertTrue($result->contains($positionGroup)); + $this->assertTrue($result->contains($otherPositionGroup)); } public function test_detects_when_active_solo_endorsement_assigned()