We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad8e079 commit ef41178Copy full SHA for ef41178
1 file changed
bootstrap/bootstrap/src/hub.rs
@@ -271,7 +271,7 @@ mod tests {
271
let flist = repo.get("test.flist")?;
272
assert_eq!(flist.name, "test.flist");
273
assert_eq!(flist.kind, Kind::Regular);
274
- assert_eq!(flist.url, "https://hub.threefold.me/azmy/test.flist");
+ assert!(flist.url.ends_with("/azmy/test.flist"));
275
276
Ok(())
277
}
@@ -326,7 +326,7 @@ mod tests {
326
327
let found = found.unwrap();
328
assert_eq!(found.name, "test.flist");
329
- assert_eq!(found.url, "https://hub.threefold.me/azmy/test.flist");
+ assert!(found.url.ends_with("/azmy/test.flist"));
330
331
332
0 commit comments