From 639d92deb102f87d0e0842e013253350144b8d26 Mon Sep 17 00:00:00 2001 From: oguzhankoral Date: Wed, 25 Oct 2023 23:39:06 +0300 Subject: [PATCH] Align AutomationRunData for specklepy 2.17.6 --- tests/test_function.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_function.py b/tests/test_function.py index 4130fb6..3580270 100644 --- a/tests/test_function.py +++ b/tests/test_function.py @@ -133,7 +133,7 @@ def automation_run_data( automation_run_id=automation_run_id, function_id=function_id, function_name="test", - function_release=function_release, + function_logo=function_release, ) @@ -142,7 +142,7 @@ def test_function_run(automation_run_data: AutomationRunData, speckle_token: str automate_sdk = run_function( AutomationContext.initialize(automation_run_data, speckle_token), automate_function, - FunctionInputs(wind_speed=10, wind_direction=0), + FunctionInputs(wind_speed=10, wind_direction=45), ) assert automate_sdk.run_status == AutomationStatus.FAILED