Skip to content

Commit bc47662

Browse files
committed
remove spare comments
1 parent 22c62ca commit bc47662

File tree

1 file changed

+0
-43
lines changed

1 file changed

+0
-43
lines changed

codeflash/code_utils/instrument_existing_tests.py

Lines changed: 0 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -508,50 +508,7 @@ def create_wrapper_function(mode: TestingMode = TestingMode.BEHAVIOR) -> ast.Fun
508508
keywords=[],
509509
)
510510
),
511-
# ast.Expr(
512-
# value=ast.Call(
513-
# func=ast.Name(id="print", ctx=ast.Load()),
514-
# args=[
515-
# ast.JoinedStr(
516-
# values=[
517-
# ast.Constant(value="!######"),
518-
# ast.FormattedValue(
519-
# value=ast.Name(id="test_module_name", ctx=ast.Load()), conversion=-1
520-
# ),
521-
# ast.Constant(value=":"),
522-
# ast.FormattedValue(
523-
# value=ast.IfExp(
524-
# test=ast.Name(id="test_class_name", ctx=ast.Load()),
525-
# body=ast.BinOp(
526-
# left=ast.Name(id="test_class_name", ctx=ast.Load()),
527-
# op=ast.Add(),
528-
# right=ast.Constant(value="."),
529-
# ),
530-
# orelse=ast.Constant(value=""),
531-
# ),
532-
# conversion=-1,
533-
# ),
534-
# ast.FormattedValue(value=ast.Name(id="test_name", ctx=ast.Load()), conversion=-1),
535-
# ast.Constant(value=":"),
536-
# ast.FormattedValue(
537-
# value=ast.Name(id="function_name", ctx=ast.Load()), conversion=-1
538-
# ),
539-
# ast.Constant(value=":"),
540-
# ast.FormattedValue(value=ast.Name(id="loop_index", ctx=ast.Load()), conversion=-1),
541-
# ast.Constant(value=":"),
542-
# ast.FormattedValue(
543-
# value=ast.Name(id="invocation_id", ctx=ast.Load()), conversion=-1
544-
# ),
545-
# ast.Constant(value="######!"),
546-
# ]
547-
# )
548-
# ],
549-
# keywords=[],
550-
# )
551-
# )
552511
]
553-
# if mode == TestingMode.BEHAVIOR
554-
# else []
555512
),
556513
ast.Assign(
557514
targets=[ast.Name(id="exception", ctx=ast.Store())], value=ast.Constant(value=None), lineno=lineno + 10

0 commit comments

Comments
 (0)