Skip to content

Commit 3e6621e

Browse files
committed
Fix indent
1 parent cff813b commit 3e6621e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/test/test_bigmem.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1250,11 +1250,11 @@ def test_sort(self, size):
12501250

12511251
class DictTest(unittest.TestCase):
12521252

1253-
@bigmemtest(size=357913941, memuse=160)
1254-
def test_dict(self, size):
1253+
@bigmemtest(size=357913941, memuse=160)
1254+
def test_dict(self, size):
12551255
# https://github.com/python/cpython/issues/102701
1256-
d = dict.fromkeys(range(size))
1257-
d[size] = 1
1256+
d = dict.fromkeys(range(size))
1257+
d[size] = 1
12581258

12591259

12601260
if __name__ == '__main__':

0 commit comments

Comments
 (0)