From fc93e4ced0235b9506837d0922590fe2cb057a85 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 25 Aug 2023 10:24:33 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=80=20chore(test=5Fdatabase.py):=20upd?= =?UTF-8?q?ate=20import=20statement=20for=20Session=20from=20sqlalchemy.or?= =?UTF-8?q?m=20to=20sqlmodel=20to=20match=20the=20library=20being=20used?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_database.py b/tests/test_database.py index 52a5daa4c..996d4faa5 100644 --- a/tests/test_database.py +++ b/tests/test_database.py @@ -2,7 +2,7 @@ import json import pytest from uuid import UUID, uuid4 -from sqlalchemy.orm import Session +from sqlmodel import Session from fastapi.testclient import TestClient