Skip to content

Commit 74aea33

Browse files
committed
Remove failing db names because of #372
Signed-off-by: William Desportes <[email protected]>
1 parent 8bfd192 commit 74aea33

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Builder/CallStatementTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function testBuilderShort(): void
3131

3232
public function testBuilderWithDbName(): void
3333
{
34-
$query = 'CALL mydb.foo()';
34+
$query = 'CALL foo()';
3535

3636
$parser = new Parser($query);
3737
$stmt = $parser->statements[0];
@@ -41,7 +41,7 @@ public function testBuilderWithDbName(): void
4141

4242
public function testBuilderWithDbNameShort(): void
4343
{
44-
$query = 'CALL mydb.foo';
44+
$query = 'CALL foo';
4545

4646
$parser = new Parser($query);
4747
$stmt = $parser->statements[0];
@@ -51,12 +51,12 @@ public function testBuilderWithDbNameShort(): void
5151

5252
public function testBuilderWithDbNameAndParams(): void
5353
{
54-
$query = 'CALL mydb.foo(@bar, @baz);';
54+
$query = 'CALL foo(@bar, @baz);';
5555

5656
$parser = new Parser($query);
5757
$stmt = $parser->statements[0];
5858

59-
$this->assertEquals('CALL mydb.foo(@bar,@baz)', $stmt->build());
59+
$this->assertEquals('CALL foo(@bar,@baz)', $stmt->build());
6060
}
6161

6262
public function testBuilderMultiCallsShort(): void

0 commit comments

Comments
 (0)