diff options
author | 2023-01-08 16:25:46 +0100 | |
---|---|---|
committer | 2023-03-01 00:33:27 +0100 | |
commit | 584ac7e1b335411e3d923aeef92466efdc92ae50 (patch) | |
tree | 99906bccb37bfe7e852d054fb52d62e6df4290c5 /macros/ui/task-no-context.rs | |
parent | 9a4f97ca5ebf19e6612115db5c763d0d61dd28a1 (diff) | |
download | rtic-584ac7e1b335411e3d923aeef92466efdc92ae50.tar.gz rtic-584ac7e1b335411e3d923aeef92466efdc92ae50.tar.zst rtic-584ac7e1b335411e3d923aeef92466efdc92ae50.zip |
Update UI tests, 1 failing that needs fixing
Diffstat (limited to 'macros/ui/task-no-context.rs')
-rw-r--r-- | macros/ui/task-no-context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/ui/task-no-context.rs b/macros/ui/task-no-context.rs index e2da6254..55e8c3b4 100644 --- a/macros/ui/task-no-context.rs +++ b/macros/ui/task-no-context.rs @@ -3,5 +3,5 @@ #[rtic_macros::mock_app(device = mock)] mod app { #[task] - fn foo() {} + async fn foo() {} } |