diff --git a/tests/test_db.py b/tests/test_db.py index 0cbb472..a734eba 100644 --- a/tests/test_db.py +++ b/tests/test_db.py @@ -408,7 +408,7 @@ class TestPipelinesSchemaKinObs018: def test_pid_defaults_to_null(self, conn): """Вставка pipeline без pid — значение NULL.""" conn.execute( - "INSERT INTO projects (id, name) VALUES ('p_pid', 'P')" + "INSERT INTO projects (id, name, path) VALUES ('p_pid', 'P', '/p')" ) conn.execute( "INSERT INTO tasks (id, project_id, title) VALUES ('t_pid', 'p_pid', 'T')" @@ -426,7 +426,7 @@ class TestPipelinesSchemaKinObs018: def test_pid_can_store_integer_value(self, conn): """Вставка pipeline с pid — значение сохраняется в БД.""" conn.execute( - "INSERT INTO projects (id, name) VALUES ('p_pid2', 'P')" + "INSERT INTO projects (id, name, path) VALUES ('p_pid2', 'P', '/p')" ) conn.execute( "INSERT INTO tasks (id, project_id, title) VALUES ('t_pid2', 'p_pid2', 'T')"