diff --git a/tests/test_macro_params.py b/tests/test_macro_params.py index 95a80fe..0515ad3 100644 --- a/tests/test_macro_params.py +++ b/tests/test_macro_params.py @@ -1,6 +1,7 @@ """ Tests of macro_params.py module """ + from ogzaf import macro_params @@ -8,14 +9,17 @@ def test_get_macro_params(): test_dict = macro_params.get_macro_params() assert isinstance(test_dict, dict) - assert list(test_dict.keys()).sort() == [ - "r_gov_shift", - "r_gov_scale", - "alpha_T", - "alpha_G", - "initial_debt_ratio", - "g_y_annual", - "gamma", - "zeta_D", - "initial_foreign_debt_ratio" - ].sort() + assert ( + list(test_dict.keys()).sort() + == [ + "r_gov_shift", + "r_gov_scale", + "alpha_T", + "alpha_G", + "initial_debt_ratio", + "g_y_annual", + "gamma", + "zeta_D", + "initial_foreign_debt_ratio", + ].sort() + )