Skip to content

Commit

Permalink
Rename StudyConverter to AntaresStudyConverter
Browse files Browse the repository at this point in the history
  • Loading branch information
tbittar committed Dec 20, 2024
1 parent 3d0a4e1 commit ba171da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/andromede/input_converter/src/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from andromede.study.parsing import InputStudy


class StudyConverter:
class AntaresStudyConverter:
def __init__(self, study_path: Optional[Path]):
"""
Initialize processor
Expand Down
4 changes: 2 additions & 2 deletions tests/input_converter/test_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
# This file is part of the Antares project.


from andromede.input_converter.src.converter import StudyConverter
from andromede.input_converter.src.converter import AntaresStudyConverter
from andromede.study.parsing import InputComponent, InputStudy


class TestConverter:
def test_convert_area_to_input_study(self, local_study_w_areas):
converter = StudyConverter(study_path=None)
converter = AntaresStudyConverter(study_path=None)
converter.study = local_study_w_areas
area_components = converter.convert_study_to_input_study()
expected_area_components = InputStudy(
Expand Down

0 comments on commit ba171da

Please sign in to comment.