Skip to content

Commit 9443007

Browse files
fix naming
1 parent 23197eb commit 9443007

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/test/test_capi/test_opt.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2349,7 +2349,7 @@ def testfunc(n):
23492349
assert ex is not None
23502350
"""))
23512351

2352-
def test_store_pop_top_specialize_none(self):
2352+
def test_pop_top_specialize_none(self):
23532353
def testfunc(n):
23542354
for _ in range(n):
23552355
global_identity(None)
@@ -2362,7 +2362,7 @@ def testfunc(n):
23622362

23632363
self.assertIn("_POP_TOP_NOP", uops)
23642364

2365-
def test_store_pop_top_specialize_int(self):
2365+
def test_pop_top_specialize_int(self):
23662366
def testfunc(n):
23672367
for _ in range(n):
23682368
global_identity(100000)
@@ -2375,7 +2375,7 @@ def testfunc(n):
23752375

23762376
self.assertIn("_POP_TOP_INT", uops)
23772377

2378-
def test_store_pop_top_specialize_float(self):
2378+
def test_pop_top_specialize_float(self):
23792379
def testfunc(n):
23802380
for _ in range(n):
23812381
global_identity(1e6)
@@ -2388,7 +2388,7 @@ def testfunc(n):
23882388

23892389
self.assertIn("_POP_TOP_FLOAT", uops)
23902390

2391-
def test_store_pop_top_specialize_str(self):
2391+
def test_pop_top_specialize_str(self):
23922392
def testfunc(n):
23932393
for _ in range(n):
23942394
global_identity("2" + "1")

0 commit comments

Comments
 (0)