Skip to content

Commit eaa5404

Browse files
committed
Remove use of newer array style
1 parent 870d006 commit eaa5404

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/Sentry/SentryBundle/Test/DependencyInjection/ExtensionTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ public function test_that_it_uses_null_as_dsn_default_value()
9393

9494
public function test_that_it_uses_dsn_value()
9595
{
96-
$container = $this->getContainer([
97-
static::CONFIG_ROOT => [
96+
$container = $this->getContainer(array(
97+
static::CONFIG_ROOT => array(
9898
'dsn' => 'custom_dsn',
99-
],
100-
]);
99+
),
100+
));
101101

102102
$this->assertSame(
103103
'custom_dsn',
@@ -117,11 +117,11 @@ public function test_that_it_uses_defined_class_as_exception_listener_class_by_d
117117

118118
public function test_that_it_uses_exception_listener_value()
119119
{
120-
$container = $this->getContainer([
120+
$container = $this->getContainer(array(
121121
static::CONFIG_ROOT => array(
122122
'exception_listener' => 'exceptionListenerClass',
123123
),
124-
]);
124+
));
125125

126126
$this->assertSame(
127127
'exceptionListenerClass',

0 commit comments

Comments
 (0)