File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -6640,10 +6640,18 @@ def test_get_step_report_no_fail(tbl_type):
66406640 for i in range (1 , 18 ):
66416641 assert isinstance (validation .get_step_report (i = i , limit = None ), GT .GT )
66426642
6643- # Test with a custom header
6643+ # Test with a custom header using static text
66446644 for i in range (1 , 18 ):
66456645 assert isinstance (validation .get_step_report (i = i , header = "Custom header" ), GT .GT )
66466646
6647+ # Test with a custom header using templating elements
6648+ for i in range (1 , 18 ):
6649+ assert isinstance (validation .get_step_report (i = i , header = "Title {title} {details}" ), GT .GT )
6650+
6651+ # Test with header removal
6652+ for i in range (1 , 18 ):
6653+ assert isinstance (validation .get_step_report (i = i , header = None ), GT .GT )
6654+
66476655 #
66486656 # Tests with a subset of columns
66496657 #
You can’t perform that action at this time.
0 commit comments