Skip to content

Commit df4d614

Browse files
fix: Fix names of catgories in benchmark.py
1 parent 9a3b08a commit df4d614

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def do_cst(self):
8686
def do_cst_fmt(self):
8787
with _Timer() as t:
8888
_s = tformat(self._cst)
89-
self._add_line(1.5, 'CST', t.get())
89+
self._add_line(1.5, 'CST_fmt', t.get())
9090

9191
def do_ast(self):
9292
with _Timer() as t:
@@ -96,7 +96,7 @@ def do_ast(self):
9696
def do_ast_fmt(self):
9797
with _Timer() as t:
9898
_s = tformat(self._ast)
99-
self._add_line(2.5, 'AST', t.get())
99+
self._add_line(2.5, 'AST_fmt', t.get())
100100

101101

102102
def benchmark(src: str, idx: int = -1, do_ast=True):

0 commit comments

Comments
 (0)