Skip to content

Commit

Permalink
Fixed includes() test
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Nov 27, 2019
1 parent da5a6e9 commit aacb935
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/MapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -639,8 +639,8 @@ public function testIn()

public function testIncludes()
{
$this->assertTrue( Map::from( ['a', 'b'] )->in( 'a' ) );
$this->assertFalse( Map::from( ['a', 'b'] )->in( 'x' ) );
$this->assertTrue( Map::from( ['a', 'b'] )->includes( 'a' ) );
$this->assertFalse( Map::from( ['a', 'b'] )->includes( 'x' ) );
}


Expand Down

0 comments on commit aacb935

Please sign in to comment.