Skip to content

Commit

Permalink
fixTests
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbautista committed Sep 2, 2024
1 parent 03e83dc commit 6aa21d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qtconsole/tests/test_ansi_code_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def test_carriage_return_newline(self):
for split in self.processor.split_string(string):
splits.append(split)
actions.append([action.action for action in self.processor.actions])
self.assertEqual(splits, ['foo', None, 'bar',None, 'cat', None, '\n'])
self.assertEqual(splits, ['foo', None, 'bar',None, 'cat', None, None])
self.assertEqual(actions, [[], ['carriage-return'], [], ['newline'], [], ['newline'], ['newline']])

def test_beep(self):
Expand Down

0 comments on commit 6aa21d6

Please sign in to comment.