Skip to content

Commit

Permalink
update blocks schema length in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
caentzminger authored Feb 3, 2024
1 parent bbe0e7b commit d9c5eb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/freeze/src/types/schemas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ mod tests {
let table = Datatype::Blocks
.table_schema(&get_u256_types(), &ColumnEncoding::Hex, &None, &None, &cols, None, None)
.unwrap();
assert_eq!(15, table.columns().len());
assert_eq!(21, table.columns().len());
assert!(table.columns().contains(&"block_hash"));
assert!(table.columns().contains(&"transactions_root"));
}
Expand Down Expand Up @@ -308,7 +308,7 @@ mod tests {
None,
)
.unwrap();
assert_eq!(15, table.columns().len());
assert_eq!(21, table.columns().len());
assert!(table.columns().contains(&"block_hash"));
assert!(table.columns().contains(&"transactions_root"));
}
Expand Down

0 comments on commit d9c5eb3

Please sign in to comment.