From 3c39e827494bf785b04c03546c294d1f6610d4e3 Mon Sep 17 00:00:00 2001 From: chriscarrollsmith Date: Thu, 23 Oct 2025 21:16:32 -0400 Subject: [PATCH] test: update test database name from qual2db4-test-db to webapp-test-db MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace project-specific database name with a more appropriate name for the template. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 643fab1..c2e7efd 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -31,7 +31,7 @@ def env_vars(monkeypatch): m.setenv("DB_PASSWORD", os.getenv("DB_PASSWORD", "postgres")) m.setenv("SECRET_KEY", "testsecretkey") m.setenv("HOST_NAME", "Test Organization") - m.setenv("DB_NAME", "qual2db4-test-db") + m.setenv("DB_NAME", "webapp-test-db") m.setenv("RESEND_API_KEY", "test") m.setenv("EMAIL_FROM", "test@example.com") m.setenv("BASE_URL", "http://localhost:8000")