We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1057e41 commit 1f9b9f3Copy full SHA for 1f9b9f3
tests/test_table_traits.rs
@@ -158,10 +158,6 @@ fn test_traits_with_table_collection_holder() {
158
let tables = make_tables();
159
let tref = &tables;
160
let tables_output = IteratorOutput::new_from_tables(tref);
161
- let access_output = IteratorOutput::new_from_table_access(tref);
162
- assert_eq!(tables_output, access_output);
163
- let iteration_output = IteratorOutput::new_from_table_iteration(tref);
164
- assert_eq!(tables_output, iteration_output);
165
let boxed = Box::new(tref);
166
let dynamic_output = IteratorOutput::new_from_dyn(&boxed);
167
assert_eq!(tables_output, dynamic_output);
0 commit comments