mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
fix tests
This commit is contained in:
parent
337427f49b
commit
dfc22aee8e
@ -146,17 +146,9 @@ impl Crypto {
|
||||
{
|
||||
let c = self.unlocked_inner.config.get();
|
||||
for ck in VALID_CRYPTO_KINDS {
|
||||
cache_validity_key.append(
|
||||
&mut c
|
||||
.network
|
||||
.routing_table
|
||||
.node_id
|
||||
.get(ck)
|
||||
.unwrap()
|
||||
.value
|
||||
.bytes
|
||||
.to_vec(),
|
||||
);
|
||||
if let Some(nid) = c.network.routing_table.node_id.get(ck) {
|
||||
cache_validity_key.append(&mut nid.value.bytes.to_vec());
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -351,17 +351,9 @@ impl RoutingTable {
|
||||
{
|
||||
let c = self.unlocked_inner.config.get();
|
||||
for ck in VALID_CRYPTO_KINDS {
|
||||
cache_validity_key.append(
|
||||
&mut c
|
||||
.network
|
||||
.routing_table
|
||||
.node_id
|
||||
.get(ck)
|
||||
.unwrap()
|
||||
.value
|
||||
.bytes
|
||||
.to_vec(),
|
||||
);
|
||||
if let Some(nid) = c.network.routing_table.node_id.get(ck) {
|
||||
cache_validity_key.append(&mut nid.value.bytes.to_vec());
|
||||
}
|
||||
}
|
||||
for b in &c.network.routing_table.bootstrap {
|
||||
cache_validity_key.append(&mut b.as_bytes().to_vec());
|
||||
|
@ -1580,7 +1580,7 @@ mod tests {
|
||||
//
|
||||
assert_eq!(
|
||||
s.core.network.routing_table.bootstrap,
|
||||
vec!["bootstrap.dev.veilid.net".to_owned()]
|
||||
vec!["bootstrap.veilid.net".to_owned()]
|
||||
);
|
||||
//
|
||||
assert_eq!(s.core.network.rpc.concurrency, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user