mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-05 06:27:25 +02:00
Replaced with strict assertions
This commit is contained in:
@@ -13,6 +13,6 @@ class DependencyInjectionTest extends TestCase
|
||||
$config = new DatabaseConfiguration('localhost', 3306, 'domnikl', '1234');
|
||||
$connection = new DatabaseConnection($config);
|
||||
|
||||
$this->assertEquals('domnikl:1234@localhost:3306', $connection->getDsn());
|
||||
$this->assertSame('domnikl:1234@localhost:3306', $connection->getDsn());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user