@@ -13,9 +13,9 @@ final class ContextConfigMutationTest extends ContextTestCase
1313{
1414 public function testOverrideConfig (): void
1515 {
16- $ context = $ this -> createNormalizationContext (42 );
16+ $ context = self :: createNormalizationContext (42 );
1717
18- self ::assertFalse ($ context ->config ->isStrictTypesEnabled ());
18+ self ::assertTrue ($ context ->config ->isStrictTypesEnabled ());
1919 self ::assertTrue ($ context ->config ->isObjectAsArray ());
2020
2121 $ context = $ context ->enter (42 , new ObjectEntry ('object ' ),
@@ -27,9 +27,9 @@ public function testOverrideConfig(): void
2727
2828 public function testConfigRollbackAfterEntrance (): void
2929 {
30- $ context = $ this -> createNormalizationContext (42 );
30+ $ context = self :: createNormalizationContext (42 );
3131
32- self ::assertFalse ($ context ->config ->isStrictTypesEnabled ());
32+ self ::assertTrue ($ context ->config ->isStrictTypesEnabled ());
3333 self ::assertTrue ($ context ->config ->isObjectAsArray ());
3434
3535 $ context = $ context ->enter (42 , new ObjectEntry ('object ' ),
@@ -40,15 +40,15 @@ public function testConfigRollbackAfterEntrance(): void
4040
4141 $ context = $ context ->enter (42 , new ObjectEntry ('object ' ));
4242
43- self ::assertFalse ($ context ->config ->isStrictTypesEnabled ());
43+ self ::assertTrue ($ context ->config ->isStrictTypesEnabled ());
4444 self ::assertTrue ($ context ->config ->isObjectAsArray ());
4545 }
4646
4747 public function testConfigRollbackAfterMultipleEntrance (): void
4848 {
49- $ context = $ this -> createNormalizationContext (42 );
49+ $ context = self :: createNormalizationContext (42 );
5050
51- self ::assertFalse ($ context ->config ->isStrictTypesEnabled ());
51+ self ::assertTrue ($ context ->config ->isStrictTypesEnabled ());
5252 self ::assertTrue ($ context ->config ->isObjectAsArray ());
5353
5454 $ context = $ context ->enter (42 , new ObjectEntry ('object ' ),
@@ -71,13 +71,13 @@ public function testConfigRollbackAfterMultipleEntrance(): void
7171
7272 $ context = $ context ->enter (42 , new ObjectEntry ('object ' ));
7373
74- self ::assertFalse ($ context ->config ->isStrictTypesEnabled ());
74+ self ::assertTrue ($ context ->config ->isStrictTypesEnabled ());
7575 self ::assertTrue ($ context ->config ->isObjectAsArray ());
7676 }
7777
7878 public function testNonDefaultConfigRollbackAfterMultipleEntrance (): void
7979 {
80- $ context = $ this -> createNormalizationContext (42 , new Configuration (
80+ $ context = self :: createNormalizationContext (42 , new Configuration (
8181 objectAsArray: false ,
8282 strictTypes: false ,
8383 ));
@@ -105,7 +105,7 @@ public function testNonDefaultConfigRollbackAfterMultipleEntrance(): void
105105
106106 public function testOnlyOneConfigChanged (): void
107107 {
108- $ context = $ this -> createNormalizationContext (42 , new Configuration (
108+ $ context = self :: createNormalizationContext (42 , new Configuration (
109109 objectAsArray: false ,
110110 strictTypes: false ,
111111 ));
0 commit comments