File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Symfony/Component/DependencyInjection/Tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -673,7 +673,7 @@ public function testCompileWithArrayResolveEnv()
673
673
$ container ->setParameter ('foo ' , '%env(json:ARRAY)% ' );
674
674
$ container ->compile (true );
675
675
676
- $ this ->assertSame ([ 'foo ' => 'bar ' ] , $ container ->getParameter ('foo ' ));
676
+ $ this ->assertSame (array ( 'foo ' => 'bar ' ) , $ container ->getParameter ('foo ' ));
677
677
678
678
putenv ('ARRAY ' );
679
679
}
@@ -688,7 +688,7 @@ public function testCompileWithArrayAndAnotherResolveEnv()
688
688
$ container ->setParameter ('bar ' , '%env(DUMMY_ENV_VAR)% ' );
689
689
$ container ->compile (true );
690
690
691
- $ this ->assertSame ([ 'foo ' => 'bar ' ] , $ container ->getParameter ('foo ' ));
691
+ $ this ->assertSame (array ( 'foo ' => 'bar ' ) , $ container ->getParameter ('foo ' ));
692
692
$ this ->assertSame ('abc ' , $ container ->getParameter ('bar ' ));
693
693
694
694
putenv ('DUMMY_ENV_VAR ' );
You can’t perform that action at this time.
0 commit comments