We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f02381c commit fe94732Copy full SHA for fe94732
2 files changed
graph/src/data/store/id.rs
@@ -566,7 +566,7 @@ mod tests {
566
assert_eq!(exp, id);
567
568
let id = IdType::Int8.generate_id(3, 2).unwrap();
569
- let exp = Id::Int8(0x0000_0003__0000_0002);
+ let exp = Id::Int8(0x0000_0003_0000_0002);
570
571
572
// Should be id + 1
runtime/test/src/test.rs
@@ -1641,8 +1641,8 @@ async fn generate_id() {
1641
"bin2",
1642
IdType::Bytes.parse("0x0000000c00000003".into()).unwrap(),
1643
),
1644
- ("int1", Id::Int8(0x0000_000c__0000_0000)),
1645
- ("int2", Id::Int8(0x0000_000c__0000_0001)),
+ ("int1", Id::Int8(0x0000_000c_0000_0000)),
+ ("int2", Id::Int8(0x0000_000c_0000_0001)),
1646
]
1647
.into_iter(),
1648
);
0 commit comments