We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d1951f commit 17b1b03Copy full SHA for 17b1b03
.php-cs-fixer.cache
tests/Unit/TransactionUnitTest.php
@@ -2,6 +2,7 @@
2
3
namespace Neo4j\QueryAPI\Tests\Unit;
4
5
+use Neo4j\QueryAPI\Results\ResultSet;
6
use PHPUnit\Framework\TestCase;
7
use Neo4j\QueryAPI\Transaction;
8
use Neo4j\QueryAPI\Neo4jRequestFactory;
@@ -45,7 +46,7 @@ public function testRunCallsBuildTransactionRunRequest()
45
46
47
$mockRequest = $this->createMock(RequestInterface::class);
48
$mockResponse = $this->createMock(ResponseInterface::class);
- $mockResultSet = $this->createMock(\Neo4j\QueryAPI\Results\ResultSet::class);
49
+ $mockResultSet = $this->createMock(ResultSet::class);
50
51
$this->requestFactory->expects($this->once())
52
->method('buildTransactionRunRequest')
0 commit comments