Skip to content

Commit

Permalink
Fix test_comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Oct 5, 2017
1 parent 31d6426 commit 674d3a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spyder/widgets/sourcecode/tests/test_comments.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ def test_selection_comment(code_editor_bot):
# Toggle comment inserting prefix and space
text = toggle_comment(editor, single_line=False)
assert text == ("# class a():\n"
" # self.b = 1\n"
" # print(self.b)\n"
" # \n"
"# self.b = 1\n"
"# print(self.b)\n"
"# \n"
)
# Toggle comment deleting inserted prefix and space
text = toggle_comment(editor, single_line=False)
Expand Down

0 comments on commit 674d3a7

Please sign in to comment.