refactor: unify LLM gateway policy
This commit is contained in:
@@ -23,6 +23,7 @@ class DatabaseMigrationTests(unittest.TestCase):
|
||||
[
|
||||
("0001", "adopt_legacy_schema"),
|
||||
("0002", "create_job_runs"),
|
||||
("0003", "extend_llm_audit"),
|
||||
],
|
||||
)
|
||||
ReviewDatabase(path)
|
||||
@@ -30,7 +31,7 @@ class DatabaseMigrationTests(unittest.TestCase):
|
||||
count = connection.execute(
|
||||
"SELECT COUNT(*) AS count FROM schema_migrations"
|
||||
).fetchone()["count"]
|
||||
self.assertEqual(count, 2)
|
||||
self.assertEqual(count, 3)
|
||||
|
||||
def test_connection_factory_enables_required_pragmas(self) -> None:
|
||||
with tempfile.TemporaryDirectory() as root:
|
||||
|
||||
Reference in New Issue
Block a user