Skip to content

Commit

Permalink
Fix TestcCase typo
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Apr 12, 2019
1 parent 4af812b commit c3f2f3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/encryption/tests/Command/FixEncryptedVersionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function testEncryptedVersionZero() {
", $output);
/**
* We need to add ob_start at the end because if not done, it would be considered as a risky test.
* The reason is outputBufferingLevel in phpunit/src/Framework/TestcCase.php is found to be 1
* The reason is outputBufferingLevel in phpunit/src/Framework/TestCase.php is found to be 1
* where as the ob_get_level is found to be zero.
*/
\ob_start();
Expand Down Expand Up @@ -230,7 +230,7 @@ public function testEncryptedVersionLessThanOriginalValue() {
", $output);
/**
* We need to add ob_start at the end because if not done, it would be considered as a risky test.
* The reason is outputBufferingLevel in phpunit/src/Framework/TestcCase.php is found to be 1
* The reason is outputBufferingLevel in phpunit/src/Framework/TestCase.php is found to be 1
* where as the ob_get_level is found to be zero.
*/
\ob_start();
Expand Down Expand Up @@ -306,7 +306,7 @@ public function testEncryptedVersionGreaterThanOriginalValue() {
", $output);
/**
* We need to add ob_start at the end because if not done, it would be considered as a risky test.
* The reason is outputBufferingLevel in phpunit/src/Framework/TestcCase.php is found to be 1
* The reason is outputBufferingLevel in phpunit/src/Framework/TestCase.php is found to be 1
* where as the ob_get_level is found to be zero.
*/
\ob_start();
Expand Down

0 comments on commit c3f2f3b

Please sign in to comment.