Skip to content

Commit

Permalink
removed unused assert
Browse files Browse the repository at this point in the history
  • Loading branch information
mmelograno committed Jan 15, 2024
1 parent 08479a0 commit 91b2a6d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion tests/Utils/EvalCache/CacheImplTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,5 @@ public function testByFlagSets()
$c->setFeaturesForFlagSets(['s2', 's1'], ['f1', 'f2']);
$this->assertEquals(['f1', 'f2'], $c->getFeaturesByFlagSets(['s1', 's2']));
$this->assertEquals(['f1', 'f2'], $c->getFeaturesByFlagSets(['s2', 's1']));
$this->assertEquals(null, $c->getFeaturesByFlagSets(['s2']));
}
}
1 change: 0 additions & 1 deletion tests/Utils/EvalCache/NoCacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,5 @@ public function testNoCache()
$c->setFeaturesForFlagSets(['s1', 's2'], ['f1', 'f2']);
$this->assertEquals(null, $c->getFeaturesByFlagSets(['s1', 's2']));
$this->assertEquals(null, $c->getFeaturesByFlagSets(['s2', 's1']));
$this->assertEquals(null, $c->getFeaturesByFlagSets(['s1']));
}
}

0 comments on commit 91b2a6d

Please sign in to comment.