Skip to content

Commit

Permalink
chore: correct bad imports in unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent-laporte-pro committed Oct 18, 2023
1 parent 6cfcd04 commit 3fb6f8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/conftest_db.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import contextlib
from typing import Any, Generator
from typing import Generator

import pytest
from sqlalchemy import create_engine # type: ignore
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/study_data_blueprint/test_renewable.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from antarest.core.utils.string import to_camel_case
from antarest.study.storage.rawstudy.model.filesystem.config.model import transform_name_to_id
from antarest.study.storage.rawstudy.model.filesystem.config.renewable import RenewableProperties
from integration.utils import wait_task_completion
from tests.integration.utils import wait_task_completion

DEFAULT_PROPERTIES = json.loads(RenewableProperties(name="Dummy").json())
DEFAULT_PROPERTIES = {to_camel_case(k): v for k, v in DEFAULT_PROPERTIES.items() if k != "name"}
Expand Down

0 comments on commit 3fb6f8d

Please sign in to comment.