Skip to content

Commit df67ffb

Browse files
committed
apply ruff formatting
1 parent 084595a commit df67ffb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_optional/test_figure_factory/test_validate_gantt.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
pd = optional_imports.get_module("pandas")
77

8+
89
@pytest.mark.parametrize("input_type", ["list", "dataframe"])
910
def test_valid_with_extra_keys(input_type):
1011
"""Test that extra keys beyond required ones are preserved."""
@@ -29,7 +30,6 @@ def test_valid_with_extra_keys(input_type):
2930
assert result[1]["Finish"] == "2020-01-04"
3031

3132

32-
3333
def test_missing_required_key_in_dataframe():
3434
df = pd.DataFrame(
3535
[
@@ -64,7 +64,6 @@ def test_list_with_dict_missing_all_keys():
6464
assert result is input_data
6565

6666

67-
6867
def test_large_list_with_non_dict_first_element():
6968
input_data = [
7069
"Not a dict",
@@ -81,7 +80,6 @@ def test_large_list_with_non_dict_first_element():
8180
validate_gantt(input_data)
8281

8382

84-
8583
def test_dataframe_column_order_and_index():
8684
df = pd.DataFrame(
8785
[

0 commit comments

Comments
 (0)