Skip to content

Commit 3147c4a

Browse files
committed
update aiservice test
1 parent 944e974 commit 3147c4a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_instrumentation_run_results_aiservice.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ def __init__(self, x=1):
193193
self.x = x
194194
195195
def sorter(self, arr):
196+
print("codeflash stdout : BubbleSorter.sorter() called")
196197
for i in range(len(arr)):
197198
for j in range(len(arr) - 1):
198199
if arr[j] > arr[j + 1]:
@@ -337,6 +338,7 @@ def __init__(self, x=1):
337338
self.x = x
338339
339340
def sorter(self, arr):
341+
print("codeflash stdout : BubbleSorter.sorter() called")
340342
for i in range(len(arr)):
341343
for j in range(len(arr) - 1):
342344
if arr[j] > arr[j + 1]:
@@ -392,6 +394,7 @@ def __init__(self, x=0):
392394
self.y = 2
393395
394396
def sorter(self, arr):
397+
print("codeflash stdout : BubbleSorter.sorter() called")
395398
for i in range(len(arr)):
396399
for j in range(len(arr) - 1):
397400
if arr[j] > arr[j + 1]:

0 commit comments

Comments
 (0)