Fix indent.

This commit is contained in:
Itamar Turner-Trauring 2020-07-24 14:48:56 -04:00
parent e0d3e46683
commit e80f138868

View File

@ -530,7 +530,7 @@ class StringSpans(unittest.TestCase):
d = b.get(t_start, t_len) d = b.get(t_start, t_len)
if d is not None: if d is not None:
which2 = "%s+(%d-%d)" % (which, t_start, which2 = "%s+(%d-%d)" % (which, t_start,
t_start+t_len-1) t_start+t_len-1)
self.failUnlessEqual(d, S[t_start:t_start+t_len], self.failUnlessEqual(d, S[t_start:t_start+t_len],
which2) which2)
# check that removing a subspan gives the right value # check that removing a subspan gives the right value