File tree Expand file tree Collapse file tree 4 files changed +4
-13
lines changed
dev/tests/integration/testsuite/Magento/GraphQl/App Expand file tree Collapse file tree 4 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ protected function setUp(): void
39
39
$ this ->markTestSkipped ('GraphQlStateDiff class is not available on this version of Magento. ' );
40
40
}
41
41
42
- $ this ->graphQlStateDiff = new GraphQlStateDiff ($ this );
42
+ $ this ->graphQlStateDiff = new GraphQlStateDiff ();
43
43
parent ::setUp ();
44
44
}
45
45
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ protected function setUp(): void
36
36
$ this ->markTestSkipped ('GraphQlStateDiff class is not available on this version of Magento. ' );
37
37
}
38
38
39
- $ this ->graphQlStateDiff = new GraphQlStateDiff ($ this );
39
+ $ this ->graphQlStateDiff = new GraphQlStateDiff ();
40
40
parent ::setUp ();
41
41
}
42
42
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ protected function setUp(): void
39
39
$ this ->markTestSkipped ('GraphQlStateDiff class is not available on this version of Magento. ' );
40
40
}
41
41
42
- $ this ->graphQlStateDiff = new GraphQlStateDiff ($ this );
42
+ $ this ->graphQlStateDiff = new GraphQlStateDiff ();
43
43
parent ::setUp ();
44
44
}
45
45
Original file line number Diff line number Diff line change @@ -57,18 +57,9 @@ class GraphQlStateDiff
57
57
58
58
/**
59
59
* Constructor
60
- *
61
- * @param TestCase $test
62
60
*/
63
- public function __construct (TestCase $ test )
61
+ public function __construct ()
64
62
{
65
- if (8 == PHP_MAJOR_VERSION && 3 == PHP_MINOR_VERSION && PHP_RELEASE_VERSION < 5 ) {
66
- $ test ->markTestSkipped (
67
- "This test isn't compatible with PHP 8.3 versions less than PHP 8.3.5 because of "
68
- . "bug in garbage collector. https://github.com/php/php-src/issues/13569 "
69
- . " will roll back in AC-11491 "
70
- );
71
- }
72
63
$ this ->objectManagerBeforeTest = Bootstrap::getObjectManager ();
73
64
$ this ->objectManagerForTest = new ObjectManager ($ this ->objectManagerBeforeTest );
74
65
$ this ->objectManagerForTest ->getFactory ()->setObjectManager ($ this ->objectManagerForTest );
You can’t perform that action at this time.
0 commit comments