From 672b431de4b9988b86a80e02109365ecb0438633 Mon Sep 17 00:00:00 2001 From: Juan Pablo Ramirez Date: Wed, 30 Oct 2024 21:32:48 +0100 Subject: [PATCH] Reverse ddev changes --- tests/bootstrap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 34ac73f..fe6c416 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -28,10 +28,10 @@ $dns = 'sqlite:test.db'; break; case 'mysql': - $dns = 'mysql:host=db;dbname=db;user=db;password=db'; + $dns = 'mysql:host=localhost;dbname=tdc;user=root;password=root'; break; case 'postgres': - $dns = 'pgsql:host=db;dbname=db;user=db;password=db'; + $dns = 'pgsql:host=localhost;dbname=tdc;user=root;password=root'; break; default: throw new Exception("The driver $driver is not supported.");