Radish alpha
r
rad:z2UcCU1LgMshWvXj6hXSDDrwB8q8M
Radicle Job Collaborative Object
Radicle
Git
fix: inline variable in format string
Lars Wirzenius committed 10 months ago
commit 574129a2d0008294818aa99ba99b3ad64ffdaeab
parent 68cac71
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)
    }