File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Tests/DependencyInjection Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,16 +39,16 @@ public function testPropertyAccessWithDefaultValue()
39
39
$ container = $ this ->createContainerFromFile ('full ' );
40
40
41
41
$ def = $ container ->getDefinition ('property_accessor ' );
42
- $ this ->assertEquals ( false , $ def ->getArgument (0 ));
43
- $ this ->assertEquals ( false , $ def ->getArgument (1 ));
42
+ $ this ->assertFalse ( $ def ->getArgument (0 ));
43
+ $ this ->assertFalse ( $ def ->getArgument (1 ));
44
44
}
45
45
46
46
public function testPropertyAccessWithOverriddenValues ()
47
47
{
48
48
$ container = $ this ->createContainerFromFile ('property_accessor ' );
49
49
$ def = $ container ->getDefinition ('property_accessor ' );
50
- $ this ->assertEquals ( true , $ def ->getArgument (0 ));
51
- $ this ->assertEquals ( true , $ def ->getArgument (1 ));
50
+ $ this ->assertTrue ( $ def ->getArgument (0 ));
51
+ $ this ->assertTrue ( $ def ->getArgument (1 ));
52
52
}
53
53
54
54
/**
You can’t perform that action at this time.
0 commit comments