Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from gooddata_sdk.catalog.base import Base

GrandTotalsPosition = Literal["pinnedBottom", "pinnedTop", "bottom", "top"]
GrandTotalsPosition = Literal["pinnedBottom", "pinnedTop", "bottom", "top", "TOP", "BOTTOM"]


@define(kw_only=True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def _tabular_by_visualization_id_base(test_config, export_format: str):

@pytest.mark.parametrize(
"grand_totals_position",
["pinnedBottom", "pinnedTop", "bottom", "top"],
["pinnedBottom", "pinnedTop", "bottom", "top", "TOP", "BOTTOM"],
)
def test_export_settings_grand_totals_position(grand_totals_position):
settings = ExportSettings(merge_headers=True, show_filters=False, grand_totals_position=grand_totals_position)
Expand Down
Loading