Skip to content

Commit c45723b

Browse files
author
Paul M. Jones
committed
disable auto-resolve for container tests
1 parent eb8cc7e commit c45723b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tests/container/src/CommonTest.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ protected function getConfigClasses()
1212
);
1313
}
1414

15+
protected function getAutoResolve()
16+
{
17+
return false;
18+
}
19+
1520
public function provideGet()
1621
{
1722
return array(
@@ -25,7 +30,9 @@ public function provideNewInstance()
2530
array('Aura\Session\CsrfTokenFactory'),
2631
array('Aura\Session\Session'),
2732
array('Aura\Session\Randval'),
28-
array('Aura\Session\Segment'),
33+
array('Aura\Session\Segment', array(
34+
'name' => 'fake-name',
35+
))
2936
);
3037
}
3138
}

0 commit comments

Comments
 (0)