Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Mar 17, 2023
1 parent cff813b commit 3e6621e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Lib/test/test_bigmem.py
Original file line number Diff line number Diff line change
Expand Up @@ -1250,11 +1250,11 @@ def test_sort(self, size):

class DictTest(unittest.TestCase):

@bigmemtest(size=357913941, memuse=160)
def test_dict(self, size):
@bigmemtest(size=357913941, memuse=160)
def test_dict(self, size):
# https://github.com/python/cpython/issues/102701
d = dict.fromkeys(range(size))
d[size] = 1
d = dict.fromkeys(range(size))
d[size] = 1


if __name__ == '__main__':
Expand Down

0 comments on commit 3e6621e

Please sign in to comment.