@@ -24,7 +24,7 @@ public function testMysqlConnectionStringMethods(): void {
2424 $ mysql = new Mysql ($ recipe , StaticVars::$ cli );
2525
2626 // Test DBeaver connection string
27- $ dbeaverCmd = $ mysql ->dbeaverConnectionString ();
27+ $ dbeaverCmd = $ mysql ->dbeaverConnectCommand ();
2828 $ this ->assertStringContainsString ('driver=mysql ' , $ dbeaverCmd );
2929 $ this ->assertStringContainsString ('port=3306 ' , $ dbeaverCmd );
3030 $ this ->assertStringContainsString ('testuser ' , $ dbeaverCmd );
@@ -78,7 +78,7 @@ public function testPostgresConnectionStringMethods(): void {
7878 $ postgres = new Postgres ($ recipe , StaticVars::$ cli );
7979
8080 // Test DBeaver connection string
81- $ dbeaverCmd = $ postgres ->dbeaverConnectionString ();
81+ $ dbeaverCmd = $ postgres ->dbeaverConnectCommand ();
8282 $ this ->assertStringContainsString ('driver=postgresql ' , $ dbeaverCmd );
8383 $ this ->assertStringContainsString ('port=5432 ' , $ dbeaverCmd );
8484 $ this ->assertStringContainsString ('testuser ' , $ dbeaverCmd );
@@ -135,6 +135,6 @@ public function testMissingDbHostPortThrowsError(): void {
135135
136136 $ this ->expectException (\Error::class);
137137 $ this ->expectExceptionMessage ('The recipe must have dbHostPort specified ' );
138- $ mysql ->dbeaverConnectionString ();
138+ $ mysql ->dbeaverConnectCommand ();
139139 }
140140}
0 commit comments