Radish alpha
r
Radicle Job Collaborative Object
Radicle
Git (anonymous pull)
Log in to clone via SSH
fix: inline variable in format string
✗ CI failure Lars Wirzenius committed 10 months ago
commit 574129a2d0008294818aa99ba99b3ad64ffdaeab
parent 68cac715acaa4b2a8f8a01b590f5807f0aaa2286
1 passed 1 failed (2 total) View logs
1 file changed +1 -1
modified src/lib.rs
@@ -829,7 +829,7 @@ mod test {

    fn node_run() -> (Uuid, Url) {
        let uuid = Uuid::new_v4();
-
        let log = Url::parse(&format!("https://example.com/ci/logs?run={}", uuid)).unwrap();
+
        let log = Url::parse(&format!("https://example.com/ci/logs?run={uuid}")).unwrap();
        (uuid, log)
    }