Remove debugging output

This commit is contained in:
Philipp 2025-05-25 22:35:49 +02:00
parent b9361a68f4
commit 1e9f8c0fb2
No known key found for this signature in database
GPG key ID: 24A7501396EB5432

View file

@ -245,7 +245,6 @@ class EjabberdAuthTest extends ConsoleTestCase
);
$txt = $this->dumpExecute($console);
print_r($txt);
$this->assertSame(0, $this->consoleExecReturn);
$this->assertEmpty($txt);
@ -327,7 +326,6 @@ class EjabberdAuthTest extends ConsoleTestCase
);
$txt = $this->dumpExecute($console);
print_r($txt);
$this->assertSame(0, $this->consoleExecReturn);
$this->assertEmpty($txt);
@ -424,7 +422,6 @@ class EjabberdAuthTest extends ConsoleTestCase
);
$txt = $this->dumpExecute($console);
print_r($txt);
$this->assertSame(0, $this->consoleExecReturn);
$this->assertEmpty($txt);
@ -465,7 +462,6 @@ class EjabberdAuthTest extends ConsoleTestCase
);
$txt = $this->dumpExecute($console);
print_r($txt);
$this->assertEmpty($txt);
rewind($this->outputStream);
@ -500,7 +496,6 @@ class EjabberdAuthTest extends ConsoleTestCase
);
$txt = $this->dumpExecute($console);
print_r($txt);
$this->assertSame(1, $this->consoleExecReturn);
$this->assertEquals("[Error] the database connection went down\n", $txt);