Skip to content

Commit 5e44d84

Browse files
committed
removed unnecessary tests
1 parent f1c16e1 commit 5e44d84

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

tests/Unit/ClientBuilderTest.php

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -143,18 +143,4 @@ public function testHttpEmpty(): void
143143
$client = ClientBuilder::create()->addHttpConnection('http', '')->build();
144144
$client->openTransaction();
145145
}
146-
147-
public function testHttpWithDatabase(): void
148-
{
149-
$client = ClientBuilder::create()->addHttpConnection('http', 'http://neo4j:test@neo4j', HttpInjections::create()->withDatabase('abc'))->build();
150-
$this->expectException(Neo4jException::class);
151-
$client->openTransaction();
152-
}
153-
154-
public function testBoltWithDatabase(): void
155-
{
156-
$client = ClientBuilder::create()->addBoltConnection('bolt', 'bolt://neo4j:test@neo4j', BoltInjections::create()->withDatabase('abc'))->build();
157-
$this->expectException(Neo4jException::class);
158-
$client->openTransaction();
159-
}
160146
}

0 commit comments

Comments
 (0)