pibd capabilities test was only relevant temporarily (#3565)

while we did not enable it by default
This commit is contained in:
Antioch Peverell 2021-02-16 11:28:01 +00:00 committed by GitHub
parent 4ab72902e0
commit 524dbd0170
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,13 +74,3 @@ fn test_capabilities() {
.contains(p2p::types::Capabilities::TX_KERNEL_HASH)
);
}
// Default capabilities do not currently include PIBD_HIST
// but it is a supported capability bit flag (currently unused).
#[test]
fn test_pibd_capabilities() {
assert_eq!(
p2p::types::Capabilities::default() | p2p::types::Capabilities::PIBD_HIST,
p2p::types::Capabilities::from_bits_truncate(0b11111111 as u32),
);
}