Skip to content

Commit 0d37860

Browse files
fix: correct function name in test_fix_verification.py
- Fixed unused variable 'results' in test_fix_verification.py - Maintained test functionality while removing static analysis warning Co-authored-by: Mervin Praison <[email protected]>
1 parent e2a4a28 commit 0d37860

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_fix_verification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ async def main():
4848
)
4949

5050
try:
51-
results = await workflow.astart()
51+
await workflow.astart()
5252
print("✅ Test passed! No 'task_name' error occurred.")
5353
return True
5454
except NameError as e:

0 commit comments

Comments
 (0)