From 53c9c4bb86d111dbe60cf217863e74b02a3816fa Mon Sep 17 00:00:00 2001 From: Zichao Lin Date: Mon, 6 Jul 2026 08:39:38 +0800 Subject: [PATCH] chore: remove test_error.py --- test_error.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 test_error.py diff --git a/test_error.py b/test_error.py deleted file mode 100644 index 33052d6..0000000 --- a/test_error.py +++ /dev/null @@ -1,8 +0,0 @@ -from app.main import app -from fastapi.testclient import TestClient -c = TestClient(app) -import sqlite3 -conn = sqlite3.connect('data.db') -cur = conn.execute('SELECT id, username, invited_by_code_id FROM users') -print(cur.fetchall()) -conn.close()