File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
src/backend_data_retrieval/data_retrieval_app/tests/scripts/create_public_stashes_test_data Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1+ from pydantic import computed_field
12from pydantic_settings import BaseSettings
23
34
@@ -21,14 +22,12 @@ def dispersed_timing_enabled(self) -> bool:
2122 return bool (self .CREATE_DATA_DIFFERENT_TIMING_INTERVAL and self .TIMING_PERIOD )
2223
2324 ITEM_NOTE_CURRENCY_TYPES : list [str ] = [
24- "chaos" ,
25- "divine" ,
2625 "divine" ,
2726 ] # , "divine", "mirror", etc.
2827 MEAN_ITEM_PRICE : int = 200
2928
3029 SOFTCORE_LEAGUES : list [str ] = ["Mercenaries" , "Phrecia" ]
31-
30+
3231 @computed_field # type: ignore[prop-decorator]
3332 @property
3433 def HARDCORE_LEAGUES (self ) -> list [str ]:
Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ def __init__(self) -> None:
3333 )
3434 self .public_stashes_modifier_test_data_creator .create_templates ()
3535 self .leagues = [
36- * script_settings .LEAGUES ,
37- * [ f"Hardcore { league } " for league in script_settings .LEAGUES ] ,
36+ * script_settings .SOFTCORE_LEAGUES ,
37+ * script_settings .HARDCORE_LEAGUES ,
3838 ]
3939
4040 def get_test_data (self ) -> list [dict [str , Any ]]:
You can’t perform that action at this time.
0 commit comments