Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrwach committed Jan 14, 2024
1 parent 253f720 commit 6b24912
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interactive/app/tests/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ pub fn sample_01_tree() -> Tree {
let root_size = 1259070;
#[cfg(windows)]
let root_size = 1259069;
let rn = add_node("", root_size, 14, None);
let rn = add_node("", root_size, 10, None);
{
let sn = add_node(&fixture_str("sample-01"), root_size, 10, Some(rn));
{
Expand Down Expand Up @@ -272,7 +272,7 @@ pub fn sample_02_tree(use_native_separator: bool) -> (Tree, TreeIndex) {
{
let mut add_node = make_add_node(&mut tree);
let root_size = 1540;
root_index = add_node("", root_size, 10, None);
root_index = add_node("", root_size, 6, None);
{
let sn = add_node(
format!(
Expand Down

0 comments on commit 6b24912

Please sign in to comment.