Skip to content

Commit 20df593

Browse files
committed
PHP 5.3 compatibility
1 parent e869fd8 commit 20df593

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,11 @@ public function test_that_it_uses_options_value()
125125
),
126126
));
127127

128+
$options = $container->getParameter('sentry.options');
129+
128130
$this->assertSame(
129131
'http://user:password@host:port',
130-
$container->getParameter('sentry.options')['http_proxy']
132+
$options['http_proxy']
131133
);
132134
}
133135

0 commit comments

Comments
 (0)