Skip to content

Commit

Permalink
Use assertSame instead
Browse files Browse the repository at this point in the history
  • Loading branch information
jadb committed Jan 18, 2016
1 parent 2bdec07 commit ab62975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/Database/TypeTest.php
Expand Up @@ -142,8 +142,8 @@ public function testMapAndBuild()
$fooType = new FooType();
Type::map('foo2', $fooType);
$map = Type::map();
$this->assertEquals($fooType, $map['foo2']);
$this->assertEquals($fooType, Type::map('foo2'));
$this->assertSame($fooType, $map['foo2']);
$this->assertSame($fooType, Type::map('foo2'));
}

/**
Expand Down

0 comments on commit ab62975

Please sign in to comment.