Skip to content

Commit

Permalink
fix class name in wrong case
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Dec 8, 2023
1 parent 25adeba commit 318f128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Framework/Ldap.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ function test_class()
$this->markTestSkipped('The ldap extension is not available.');
}

StdErrMock::start();
StderrMock::start();
$object = new rcube_ldap([]);
StdErrMock::stop();
StderrMock::stop();

$this->assertInstanceOf('rcube_ldap', $object, "Class constructor");
$this->assertSame('ERROR: Could not connect to any LDAP server', trim(StderrMock::$output));
Expand Down

0 comments on commit 318f128

Please sign in to comment.