From d57801ed395944e83cfa5277da28d013a69fc340 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 1 Feb 2024 10:20:56 -0800 Subject: [PATCH] Adapt test so that "oedb" is checked as well ("local" is checked in docstring test) --- tests/test_data_handling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_data_handling.py b/tests/test_data_handling.py index d5ea93e..e54ab04 100644 --- a/tests/test_data_handling.py +++ b/tests/test_data_handling.py @@ -78,7 +78,7 @@ def test_broken_pwr_curve(self): def test_get_turbine_types(self, capsys): """Test the `get_turbine_types` function.""" - get_turbine_types() + get_turbine_types(turbine_library="oedb") captured = capsys.readouterr() assert "Enercon" in captured.out get_turbine_types("oedb", print_out=False, filter_=False)