Skip to content

Commit caf9ac9

Browse files
committed
Added flag to ob_start() but travis-ci still blows up
1 parent 23f4a9c commit caf9ac9

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"php": ">=7.1",
2020
"zendframework/zend-escaper": "^2.5",
2121
"kint-php/kint": "^2.1",
22-
"ext-intl": "*"
22+
"ext-intl": "*",
23+
"ext-curl": "*"
2324
},
2425
"require-dev": {
2526
"phpunit/phpunit": "^7.0",

tests/system/Test/TestCaseEmissionsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function setUp()
2121
// {
2222
// ob_end_clean();
2323
// }
24-
ob_start();
24+
ob_start(null, 0, PHP_OUTPUT_HANDLER_CLEANABLE);
2525
}
2626

2727
public function tearDown()

0 commit comments

Comments
 (0)