Skip to content

Commit a7ea234

Browse files
committed
fixup! fix: fix tab-space mix with tab indenation and continuation_align_style=SPACE
1 parent 69a2304 commit a7ea234

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yapftests/format_token_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def testSpace(self):
3030
self.assertEqual(pad, '')
3131

3232
pad = format_token._TabbedContinuationAlignPadding(2, align_style, 2)
33-
self.assertEqual(pad, ' ' * 2)
33+
self.assertEqual(pad, '\t' * 2)
3434

3535
pad = format_token._TabbedContinuationAlignPadding(5, align_style, 2)
3636
self.assertEqual(pad, ' ' * 5)

0 commit comments

Comments
 (0)