Skip to content

Commit 321d512

Browse files
committed
fixing format_tools
1 parent eb31c0c commit 321d512

File tree

5 files changed

+7
-2
lines changed

5 files changed

+7
-2
lines changed

module/core/format_tools/tests/inc/collection_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ fn hset_basic()
328328
),
329329
},
330330
};
331-
331+
332332
use the_module::TableFormatter;
333333
let _as_table : AsTable< '_, HashSet< TestObject >, &str, TestObject, str, WithRef > = AsTable::new( &data );
334334
let as_table = AsTable::new( &data );

module/core/format_tools/tests/inc/fields_test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ for TestObject
5252

5353
dst.into_iter()
5454
}
55+
5556
}
5657

5758
//

module/core/reflect_tools/tests/inc/fundamental/fields_bset.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use super::*;
44
use the_module::
55
{
66
Fields,
7-
87
};
98

109
// xxx : implement for other collections

module/core/test_tools/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ mod private {}
8787
prelude use ::collection_tools as collection;
8888
// prelude use ::process_tools as process;
8989

90+
use ::collection_tools;
91+
9092
prelude use ::meta_tools::
9193
{
9294
impls,
@@ -95,6 +97,7 @@ mod private {}
9597
tests_impls_optional,
9698
tests_index,
9799
};
100+
98101
prelude use ::typing_tools::{ implements };
99102

100103
}

module/move/assistant/src/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ async fn main() -> Result< (), Box< dyn Error > >
2323
dotenv().ok();
2424
let client = client()?;
2525
let assistants = client.list_assistant( None, None, None, None )?;
26+
2627
println!( "Assistants: {:?}", assistants.data );
28+
2729
Ok( () )
2830
}

0 commit comments

Comments
 (0)