Skip to content

Commit 14e78b0

Browse files
committed
fix failing tests
1 parent d0ef853 commit 14e78b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Pools/Scopes/ConnectionTestScope.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function testConnectionGetID(): void
2525
{
2626
$this->execute(function (): void {
2727
$this->setUpConnection();
28-
$this->assertSame(null, $this->connectionObject->getID());
28+
$this->assertSame('', $this->connectionObject->getID());
2929

3030
$this->connectionObject->setID('test');
3131

@@ -37,7 +37,7 @@ public function testConnectionSetID(): void
3737
{
3838
$this->execute(function (): void {
3939
$this->setUpConnection();
40-
$this->assertSame(null, $this->connectionObject->getID());
40+
$this->assertSame('', $this->connectionObject->getID());
4141

4242
$this->assertInstanceOf(Connection::class, $this->connectionObject->setID('test'));
4343

0 commit comments

Comments
 (0)