We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ffd278 commit 398086bCopy full SHA for 398086b
ipykernel/tests/test_debugger.py
@@ -284,7 +284,10 @@ def test_rich_inspect_at_breakpoint(kernel_with_debug):
284
{"variableName": locals_[2]["name"], "frameId": stacks[0]["id"]},
285
)
286
287
- assert reply["body"]["data"] == {'text/html': '<div><p>Hello World!</p></div>', 'text/plain': '<IPython.core.displa...ML object>'}
+ assert reply["body"]["data"] == {
288
+ "text/html": "<div><p>Hello World!</p></div>",
289
+ "text/plain": "<IPython.core.display.HTML object>",
290
+ }
291
292
293
def test_convert_to_long_pathname():
0 commit comments