From 0acdea70d9950ce255eb615372e8b5447f9b249a Mon Sep 17 00:00:00 2001 From: sheshtawy Date: Thu, 26 Apr 2018 15:53:26 -0400 Subject: [PATCH] Remove markdown cells assertions since they're not useful anymore --- notebook/tests/selenium/test_dualmode_insertcell.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/notebook/tests/selenium/test_dualmode_insertcell.py b/notebook/tests/selenium/test_dualmode_insertcell.py index b22ecbaaa..3619f4828 100644 --- a/notebook/tests/selenium/test_dualmode_insertcell.py +++ b/notebook/tests/selenium/test_dualmode_insertcell.py @@ -28,14 +28,6 @@ def test_insert_cell(notebook): assert notebook.get_cell_type(3) == "code" assert len(notebook.cells) == 5 - notebook.focus_cell(2) - notebook.convert_cell_type(2, "markdown") - assert notebook.get_cell_type(2) == "markdown" - notebook.current_cell.send_keys("a") - assert notebook.get_cell_type(3) == "markdown" - notebook.current_cell.send_keys("b") - assert notebook.get_cell_type(4) == "markdown" - notebook.edit_cell(index=1, content="cell1") notebook.focus_cell(1) notebook.current_cell.send_keys("a")