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 1ad3524 commit 276b3e8Copy full SHA for 276b3e8
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