Skip to content
Merged
Prev Previous commit
Next Next commit
fix naming
  • Loading branch information
Fidget-Spinner committed Jun 23, 2025
commit 9443007af89fa3c53bf186087684d287df0219a9
8 changes: 4 additions & 4 deletions Lib/test/test_capi/test_opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -2349,7 +2349,7 @@ def testfunc(n):
assert ex is not None
"""))

def test_store_pop_top_specialize_none(self):
def test_pop_top_specialize_none(self):
def testfunc(n):
for _ in range(n):
global_identity(None)
Expand All @@ -2362,7 +2362,7 @@ def testfunc(n):

self.assertIn("_POP_TOP_NOP", uops)

def test_store_pop_top_specialize_int(self):
def test_pop_top_specialize_int(self):
def testfunc(n):
for _ in range(n):
global_identity(100000)
Expand All @@ -2375,7 +2375,7 @@ def testfunc(n):

self.assertIn("_POP_TOP_INT", uops)

def test_store_pop_top_specialize_float(self):
def test_pop_top_specialize_float(self):
def testfunc(n):
for _ in range(n):
global_identity(1e6)
Expand All @@ -2388,7 +2388,7 @@ def testfunc(n):

self.assertIn("_POP_TOP_FLOAT", uops)

def test_store_pop_top_specialize_str(self):
def test_pop_top_specialize_str(self):
def testfunc(n):
for _ in range(n):
global_identity("2" + "1")
Expand Down
Loading