Skip to content

Commit adbf647

Browse files
authored
Added assignment instead of direct return
1 parent b8b6f38 commit adbf647

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/tests/api-functional/framework/Magento/TestFramework/TestCase/GraphQlAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private function getAppCache()
9292
private function getGraphQlClient()
9393
{
9494
if ($this->graphQlClient === null) {
95-
return Bootstrap::getObjectManager()->get(\Magento\TestFramework\TestCase\GraphQl\Client::class);
95+
$this->graphQlClient = Bootstrap::getObjectManager()->get(\Magento\TestFramework\TestCase\GraphQl\Client::class);
9696
}
9797

9898
return $this->graphQlClient;

0 commit comments

Comments
 (0)