Skip to content

Commit 457e732

Browse files
committed
Fix test to use methods
1 parent 22d5573 commit 457e732

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/worker/test_workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6394,8 +6394,8 @@ async def waiting() -> bool:
63946394
assert timer_summs == {"hi!", "timer2"}
63956395

63966396
describe_r = await handle.describe()
6397-
assert describe_r.static_summary == "cool workflow bro"
6398-
assert describe_r.static_details == "xtremely detailed"
6397+
assert await describe_r.static_summary() == "cool workflow bro"
6398+
assert await describe_r.static_details() == "xtremely detailed"
63996399

64006400

64016401
@workflow.defn

0 commit comments

Comments
 (0)