Skip to content

Commit

Permalink
fixup! fix: fix tab-space mix with tab indenation and continuation_al…
Browse files Browse the repository at this point in the history
…ign_style=SPACE
  • Loading branch information
spaceone committed Oct 7, 2021
1 parent 69a2304 commit a7ea234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yapftests/format_token_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def testSpace(self):
self.assertEqual(pad, '')

pad = format_token._TabbedContinuationAlignPadding(2, align_style, 2)
self.assertEqual(pad, ' ' * 2)
self.assertEqual(pad, '\t' * 2)

pad = format_token._TabbedContinuationAlignPadding(5, align_style, 2)
self.assertEqual(pad, ' ' * 5)
Expand Down

0 comments on commit a7ea234

Please sign in to comment.