Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/unit/Command/FixEncryptedVersionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,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 @@ -231,7 +231,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 @@ -316,7 +316,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