Skip to content

Commit 8f07eeb

Browse files
committed
whitespace
1 parent 6509e85 commit 8f07eeb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/test/test_traceback.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1603,21 +1603,21 @@ def test_exception_with_multiple_notes(self):
16031603
for e in [ValueError(42), SyntaxError('bad syntax')]:
16041604
with self.subTest(e=e):
16051605
vanilla = self.get_report(e)
1606-
1606+
16071607
e.add_note('Note 1')
16081608
e.add_note('Note 2')
16091609
e.add_note('Note 3')
1610-
1610+
16111611
self.assertEqual(
16121612
self.get_report(e),
16131613
vanilla + 'Note 1\n' + 'Note 2\n' + 'Note 3\n')
1614-
1614+
16151615
del e.__notes__
16161616
e.add_note('Note 4')
16171617
del e.__notes__
16181618
e.add_note('Note 5')
16191619
e.add_note('Note 6')
1620-
1620+
16211621
self.assertEqual(
16221622
self.get_report(e),
16231623
vanilla + 'Note 5\n' + 'Note 6\n')

0 commit comments

Comments
 (0)