File tree Expand file tree Collapse file tree
tests/integrations/jupyter Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88
99def migrate_ddl (state_sync , ** kwargs ): # type: ignore
10+ schema = state_sync .schema
1011 engine_adapter = state_sync .engine_adapter
1112 if not engine_adapter .SUPPORTS_INDEXES :
1213 return
Original file line number Diff line number Diff line change @@ -168,9 +168,9 @@ def test_render(
168168
169169 assert output .stdout == ""
170170 assert output .stderr == ""
171- assert len (output .outputs ) == 1
172- assert len (convert_all_html_output_to_text (output )[0 ]) > 2200
173- assert len (convert_all_html_output_to_tags (output )[0 ]) > 150
171+ assert len (output .outputs ) == 2
172+ assert len (convert_all_html_output_to_text (output )[1 ]) > 2200
173+ assert len (convert_all_html_output_to_tags (output )[1 ]) > 150
174174
175175
176176@pytest .mark .slow
@@ -182,9 +182,9 @@ def test_render_no_format(
182182
183183 assert output .stdout == ""
184184 assert output .stderr == ""
185- assert len (output .outputs ) == 1
186- assert len (convert_all_html_output_to_text (output )[0 ]) >= 700
187- assert len (convert_all_html_output_to_tags (output )[0 ]) >= 50
185+ assert len (output .outputs ) == 2
186+ assert len (convert_all_html_output_to_text (output )[1 ]) >= 700
187+ assert len (convert_all_html_output_to_tags (output )[1 ]) >= 50
188188
189189
190190@pytest .mark .slow
You can’t perform that action at this time.
0 commit comments