We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef2c427 commit cc4441fCopy full SHA for cc4441f
1 file changed
tests/types/bit_vec.rs
@@ -8,8 +8,7 @@ fn test_bit_params() {
8
let mut bv = BitVec::from_bytes(&[0b0110_1001, 0b0000_0111]);
9
bv.pop();
10
11
- test_type("BIT(14)", &[(Some(bv),
12
- "B'01101001000001'"),
+ test_type("BIT(14)", &[(Some(bv), "B'01101001000001'"),
13
(None, "NULL")])
14
}
15
@@ -18,9 +17,7 @@ fn test_varbit_params() {
18
17
19
20
21
- test_type("VARBIT", &[(Some(bv),
22
23
- (Some(BitVec::from_bytes(&[])),
24
- "B''"),
+ test_type("VARBIT", &[(Some(bv), "B'01101001000001'"),
+ (Some(BitVec::from_bytes(&[])), "B''"),
25
26
0 commit comments