File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ def create_trace_replay_test_code(
115115 if function_name == "__init__":
116116 ret = {class_name_alias}(*args[1:], **kwargs)
117117 else:
118- instance = args[0] # self
119118 ret = {class_name_alias}{method_name}(*args, **kwargs)
120119 """
121120 )
Original file line number Diff line number Diff line change @@ -111,7 +111,6 @@ def test_code_to_optimize_bubble_sort_codeflash_trace_Sorter_sorter():
111111 if function_name == "__init__":
112112 ret = code_to_optimize_bubble_sort_codeflash_trace_Sorter(*args[1:], **kwargs)
113113 else:
114- instance = args[0] # self
115114 ret = code_to_optimize_bubble_sort_codeflash_trace_Sorter.sorter(*args, **kwargs)
116115
117116def test_code_to_optimize_bubble_sort_codeflash_trace_Sorter_sort_class():
@@ -138,7 +137,6 @@ def test_code_to_optimize_bubble_sort_codeflash_trace_Sorter___init__():
138137 if function_name == "__init__":
139138 ret = code_to_optimize_bubble_sort_codeflash_trace_Sorter(*args[1:], **kwargs)
140139 else:
141- instance = args[0] # self
142140 ret = code_to_optimize_bubble_sort_codeflash_trace_Sorter(*args, **kwargs)
143141
144142"""
You can’t perform that action at this time.
0 commit comments