Skip to content
Snippets Groups Projects
Commit 7aee1945 authored by Kevin Kaßelmann's avatar Kevin Kaßelmann
Browse files

removed a ignore from tests

parent d46d9a66
No related branches found
No related tags found
No related merge requests found
......@@ -398,14 +398,10 @@ mod tests {
}
#[test]
#[ignore]
fn next_sibling_no_next_sibling() {
let bitvec = bit_vec!(true, true, false, true, false, false);
let tree: BPTree<String> = BPTree::from_bitvec(bitvec.clone()).unwrap();
assert_eq!(
tree.next_sibling(3).unwrap_err(),
NodeError::HasNoFurtherSiblingsError
);
assert_eq!(tree.next_sibling(3).unwrap_err(), NodeError::NoSiblingError);
}
#[test]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment