Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
radicle-cli: fix temp dir path too long error on Mac and BSD
Adrian Duke committed 3 months ago
commit 504bf1c4be4138214fe69a086a5f33489764c7e5
parent 02318f199c6f29a2eede1f282e1f9b99927d27ec
1 file changed +3 -1
modified crates/radicle-cli/tests/commands.rs
@@ -610,7 +610,9 @@ fn rad_id_collaboration() {
    let bob = environment.node("bob");
    let eve = environment.node("eve");
    let seed = environment.seed("seed");
-
    let distrustful = environment.seed("distrustful");
+
    // On Mac OS X and BSD systems `SUN_LEN` is 104 bytes, "distrustful" was causing paths to be
+
    // 106, and as such this test will error. Renamed to shorter "bad".
+
    let distrustful = environment.seed("bad");
    let acme = RepoId::from_str("z42hL2jL4XNk6K8oHQaSWfMgCL7ji").unwrap();

    environment.repository(&alice);