Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b35172f

Browse files
committedMar 17, 2023
Fix indent
1 parent cff813b commit b35172f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎Lib/test/test_bigmem.py

+5-5
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):
1255-
# https://github.com/python/cpython/issues/102701
1256-
d = dict.fromkeys(range(size))
1257-
d[size] = 1
1253+
@bigmemtest(size=357913941, memuse=160)
1254+
def test_dict(self, size):
1255+
# https://github.com/python/cpython/issues/102701
1256+
d = dict.fromkeys(range(size))
1257+
d[size] = 1
12581258

12591259

12601260
if __name__ == '__main__':

0 commit comments

Comments
 (0)
Please sign in to comment.