File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments