setup
x86_64-linux.formatting
· build #26
· raw
1this derivation will be built:2 /nix/store/vbsi44s3fq1fmrfb8ybddx6jby7kl3px-treefmt-check.drv3error: Cannot build '/nix/store/vbsi44s3fq1fmrfb8ybddx6jby7kl3px-treefmt-check.drv'.4 Reason: builder failed with exit code 1.5 Output paths:6 /nix/store/v7wkfhzil65dgrfdymbvr89ndf2dr9sw-treefmt-check7 Last 25 log lines:8 > + let text_content =9 > + TextMessageEventContent::plain("!clone https://github.com/octocat/Hello-World");10 > let event_id = event_id!("$clone_event:localhost");11 > 12 > handle_clone_command(&ctx, event_id.to_owned(), &room, &text_content).await;13 > @@ -1067,12 +1061,17 @@ mod tests {14 > let (tx, mut rx) = mpsc::channel::<CloneRequest>(1);15 > let ctx = make_test_bot_context(tx).await;16 > 17 > - let text_content = TextMessageEventContent::plain("!clone https://github.com/a/b and https://github.com/c/d");18 > + let text_content = TextMessageEventContent::plain(19 > + "!clone https://github.com/a/b and https://github.com/c/d",20 > + );21 > let event_id = event_id!("$clone_event:localhost");22 > 23 > handle_clone_command(&ctx, event_id.to_owned(), &room, &text_content).await;24 > 25 > let request = rx.try_recv();26 > - assert!(request.is_err(), "No clone request should be queued for multiple links");27 > + assert!(28 > + request.is_err(),29 > + "No clone request should be queued for multiple links"30 > + );31 > }32 > }33 For full logs, run:34 nix log /nix/store/vbsi44s3fq1fmrfb8ybddx6jby7kl3px-treefmt-check.drv