Skip to content

Commit 3b533a4

Browse files
committed
Remove remote from default drivers
1 parent 0bf1782 commit 3b533a4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1616
- Updated README to list all configuration options
1717
- Updated `behat.yml.dist` so that it can be used as a proper example
1818
- `remote` driver is no longer activated by default
19+
- Version constraints in composer.json have been updated from `~` to `^`.
1920

2021

2122
## [3.2.0] - 2017-10-17 - Guzzle 6.0 support release

src/Extension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function load(ContainerBuilder $container, array $config)
6363
}
6464

6565
if (! count($config['drivers'])) {
66-
$config['drivers'] = array('remote', 'local');
66+
$config['drivers'] = array('local');
6767
}
6868

6969
if (! count($config['report']['options'])) {

tests/ExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ public function loadProvider()
242242
'method' => 'DELETE',
243243
'path' => '/',
244244
),
245-
'behat.code_coverage.config.drivers' => array('remote', 'local'),
245+
'behat.code_coverage.config.drivers' => array('local'),
246246
'behat.code_coverage.config.filter' => array(
247247
'whitelist' => array(
248248
'addUncoveredFilesFromWhitelist' => true,

0 commit comments

Comments
 (0)