Skip to content

Commit b0dd8f3

Browse files
committed
update aiservice test
1 parent 6ee7555 commit b0dd8f3

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
@@ -192,6 +192,7 @@ def __init__(self, x=1):
192192
self.x = x
193193
194194
def sorter(self, arr):
195+
print("codeflash stdout : BubbleSorter.sorter() called")
195196
for i in range(len(arr)):
196197
for j in range(len(arr) - 1):
197198
if arr[j] > arr[j + 1]:
@@ -336,6 +337,7 @@ def __init__(self, x=1):
336337
self.x = x
337338
338339
def sorter(self, arr):
340+
print("codeflash stdout : BubbleSorter.sorter() called")
339341
for i in range(len(arr)):
340342
for j in range(len(arr) - 1):
341343
if arr[j] > arr[j + 1]:
@@ -391,6 +393,7 @@ def __init__(self, x=0):
391393
self.y = 2
392394
393395
def sorter(self, arr):
396+
print("codeflash stdout : BubbleSorter.sorter() called")
394397
for i in range(len(arr)):
395398
for j in range(len(arr) - 1):
396399
if arr[j] > arr[j + 1]:

0 commit comments

Comments
 (0)