Skip to content

Commit d70899d

Browse files
committed
cool
1 parent 5131536 commit d70899d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/example_flags.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ fn test_bit_ops() {
4949
let options = SimplificationOptions::default();
5050
assert!(!options.contains(SimplificationOptions::KEEP_INPUT_ROOTS));
5151
assert!((options & SimplificationOptions::KEEP_INPUT_ROOTS) == 0.into());
52-
let mut options = options | SimplificationOptions::REDUCE_TO_SITE_TOPOLOGY;
52+
let options = options | SimplificationOptions::REDUCE_TO_SITE_TOPOLOGY;
5353
assert!(!options.contains(SimplificationOptions::KEEP_INPUT_ROOTS));
5454
assert!(options.contains(SimplificationOptions::REDUCE_TO_SITE_TOPOLOGY));
5555
todo!("need to do more of the op traits");

0 commit comments

Comments
 (0)