Skip to content

Commit 5ee01a1

Browse files
Fixed method typo to actually execute it *fail*
1 parent 10b6a9a commit 5ee01a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/phpbu/Result/PrinterCliTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public function testCryptStartEnd()
212212
/**
213213
* Tests PrinterCli::cryptStart
214214
*/
215-
public function tesCryptStartEndDebug()
215+
public function testCryptStartEndDebug()
216216
{
217217
$crypt = new Configuration\Backup\Crypt('TestType', false);
218218
$printer = new PrinterCli(null, false, false, true);
@@ -221,7 +221,7 @@ public function tesCryptStartEndDebug()
221221
$printer->onCryptStart($this->getEventMock('Crypt\\Start', $crypt));
222222
$printer->onCryptEnd($this->getEventMock('Crypt\\End', $crypt));
223223
$output = ob_get_clean();
224-
$this->assertTrue(strpos($output, 'crypt start') !== false);
224+
$this->assertTrue(strpos($output, 'crypt') !== false);
225225
$this->assertTrue(strpos($output, 'done') !== false);
226226
}
227227

0 commit comments

Comments
 (0)