diff --git a/src/query.rs b/src/query.rs index 223d4abb..56eefa35 100644 --- a/src/query.rs +++ b/src/query.rs @@ -589,8 +589,8 @@ mod tests { let semver_query = SemverQuery::from_ron_str(&query_text).unwrap(); let expected_result_text = - std::fs::read_to_string(format!("./test_outputs/{query_name}.output.ron")) - .with_context(|| format!("Could not load test_outputs/{query_name}.output.ron expected-outputs file, did you forget to add it?")) + std::fs::read_to_string(format!("./test_outputs/query_execution/{query_name}.snap")) + .with_context(|| format!("Could not load test_outputs/query_execution/{query_name}.snap expected-outputs file, did you forget to add it?")) .expect("failed to load expected outputs"); let mut expected_results: TestOutput = ron::from_str(&expected_result_text) .expect("could not parse expected outputs as ron format"); diff --git a/test_outputs/auto_trait_impl_removed.output.ron b/test_outputs/query_execution/auto_trait_impl_removed.snap similarity index 100% rename from test_outputs/auto_trait_impl_removed.output.ron rename to test_outputs/query_execution/auto_trait_impl_removed.snap diff --git a/test_outputs/constructible_struct_adds_field.output.ron b/test_outputs/query_execution/constructible_struct_adds_field.snap similarity index 100% rename from test_outputs/constructible_struct_adds_field.output.ron rename to test_outputs/query_execution/constructible_struct_adds_field.snap diff --git a/test_outputs/constructible_struct_adds_private_field.output.ron b/test_outputs/query_execution/constructible_struct_adds_private_field.snap similarity index 100% rename from test_outputs/constructible_struct_adds_private_field.output.ron rename to test_outputs/query_execution/constructible_struct_adds_private_field.snap diff --git a/test_outputs/constructible_struct_changed_type.output.ron b/test_outputs/query_execution/constructible_struct_changed_type.snap similarity index 100% rename from test_outputs/constructible_struct_changed_type.output.ron rename to test_outputs/query_execution/constructible_struct_changed_type.snap diff --git a/test_outputs/derive_trait_impl_removed.output.ron b/test_outputs/query_execution/derive_trait_impl_removed.snap similarity index 100% rename from test_outputs/derive_trait_impl_removed.output.ron rename to test_outputs/query_execution/derive_trait_impl_removed.snap diff --git a/test_outputs/enum_marked_non_exhaustive.output.ron b/test_outputs/query_execution/enum_marked_non_exhaustive.snap similarity index 100% rename from test_outputs/enum_marked_non_exhaustive.output.ron rename to test_outputs/query_execution/enum_marked_non_exhaustive.snap diff --git a/test_outputs/enum_missing.output.ron b/test_outputs/query_execution/enum_missing.snap similarity index 100% rename from test_outputs/enum_missing.output.ron rename to test_outputs/query_execution/enum_missing.snap diff --git a/test_outputs/enum_must_use_added.output.ron b/test_outputs/query_execution/enum_must_use_added.snap similarity index 100% rename from test_outputs/enum_must_use_added.output.ron rename to test_outputs/query_execution/enum_must_use_added.snap diff --git a/test_outputs/enum_no_repr_variant_discriminant_changed.output.ron b/test_outputs/query_execution/enum_no_repr_variant_discriminant_changed.snap similarity index 100% rename from test_outputs/enum_no_repr_variant_discriminant_changed.output.ron rename to test_outputs/query_execution/enum_no_repr_variant_discriminant_changed.snap diff --git a/test_outputs/enum_now_doc_hidden.output.ron b/test_outputs/query_execution/enum_now_doc_hidden.snap similarity index 100% rename from test_outputs/enum_now_doc_hidden.output.ron rename to test_outputs/query_execution/enum_now_doc_hidden.snap diff --git a/test_outputs/enum_repr_int_changed.output.ron b/test_outputs/query_execution/enum_repr_int_changed.snap similarity index 100% rename from test_outputs/enum_repr_int_changed.output.ron rename to test_outputs/query_execution/enum_repr_int_changed.snap diff --git a/test_outputs/enum_repr_int_removed.output.ron b/test_outputs/query_execution/enum_repr_int_removed.snap similarity index 100% rename from test_outputs/enum_repr_int_removed.output.ron rename to test_outputs/query_execution/enum_repr_int_removed.snap diff --git a/test_outputs/enum_repr_transparent_removed.output.ron b/test_outputs/query_execution/enum_repr_transparent_removed.snap similarity index 100% rename from test_outputs/enum_repr_transparent_removed.output.ron rename to test_outputs/query_execution/enum_repr_transparent_removed.snap diff --git a/test_outputs/enum_struct_variant_field_added.output.ron b/test_outputs/query_execution/enum_struct_variant_field_added.snap similarity index 100% rename from test_outputs/enum_struct_variant_field_added.output.ron rename to test_outputs/query_execution/enum_struct_variant_field_added.snap diff --git a/test_outputs/enum_struct_variant_field_missing.output.ron b/test_outputs/query_execution/enum_struct_variant_field_missing.snap similarity index 100% rename from test_outputs/enum_struct_variant_field_missing.output.ron rename to test_outputs/query_execution/enum_struct_variant_field_missing.snap diff --git a/test_outputs/enum_struct_variant_field_now_doc_hidden.output.ron b/test_outputs/query_execution/enum_struct_variant_field_now_doc_hidden.snap similarity index 100% rename from test_outputs/enum_struct_variant_field_now_doc_hidden.output.ron rename to test_outputs/query_execution/enum_struct_variant_field_now_doc_hidden.snap diff --git a/test_outputs/enum_tuple_variant_changed_kind.output.ron b/test_outputs/query_execution/enum_tuple_variant_changed_kind.snap similarity index 100% rename from test_outputs/enum_tuple_variant_changed_kind.output.ron rename to test_outputs/query_execution/enum_tuple_variant_changed_kind.snap diff --git a/test_outputs/enum_tuple_variant_field_added.output.ron b/test_outputs/query_execution/enum_tuple_variant_field_added.snap similarity index 100% rename from test_outputs/enum_tuple_variant_field_added.output.ron rename to test_outputs/query_execution/enum_tuple_variant_field_added.snap diff --git a/test_outputs/enum_tuple_variant_field_missing.output.ron b/test_outputs/query_execution/enum_tuple_variant_field_missing.snap similarity index 100% rename from test_outputs/enum_tuple_variant_field_missing.output.ron rename to test_outputs/query_execution/enum_tuple_variant_field_missing.snap diff --git a/test_outputs/enum_tuple_variant_field_now_doc_hidden.output.ron b/test_outputs/query_execution/enum_tuple_variant_field_now_doc_hidden.snap similarity index 100% rename from test_outputs/enum_tuple_variant_field_now_doc_hidden.output.ron rename to test_outputs/query_execution/enum_tuple_variant_field_now_doc_hidden.snap diff --git a/test_outputs/enum_unit_variant_changed_kind.output.ron b/test_outputs/query_execution/enum_unit_variant_changed_kind.snap similarity index 100% rename from test_outputs/enum_unit_variant_changed_kind.output.ron rename to test_outputs/query_execution/enum_unit_variant_changed_kind.snap diff --git a/test_outputs/enum_variant_added.output.ron b/test_outputs/query_execution/enum_variant_added.snap similarity index 100% rename from test_outputs/enum_variant_added.output.ron rename to test_outputs/query_execution/enum_variant_added.snap diff --git a/test_outputs/enum_variant_marked_non_exhaustive.output.ron b/test_outputs/query_execution/enum_variant_marked_non_exhaustive.snap similarity index 100% rename from test_outputs/enum_variant_marked_non_exhaustive.output.ron rename to test_outputs/query_execution/enum_variant_marked_non_exhaustive.snap diff --git a/test_outputs/enum_variant_missing.output.ron b/test_outputs/query_execution/enum_variant_missing.snap similarity index 100% rename from test_outputs/enum_variant_missing.output.ron rename to test_outputs/query_execution/enum_variant_missing.snap diff --git a/test_outputs/exported_function_changed_abi.output.ron b/test_outputs/query_execution/exported_function_changed_abi.snap similarity index 100% rename from test_outputs/exported_function_changed_abi.output.ron rename to test_outputs/query_execution/exported_function_changed_abi.snap diff --git a/test_outputs/function_abi_no_longer_unwind.output.ron b/test_outputs/query_execution/function_abi_no_longer_unwind.snap similarity index 100% rename from test_outputs/function_abi_no_longer_unwind.output.ron rename to test_outputs/query_execution/function_abi_no_longer_unwind.snap diff --git a/test_outputs/function_changed_abi.output.ron b/test_outputs/query_execution/function_changed_abi.snap similarity index 100% rename from test_outputs/function_changed_abi.output.ron rename to test_outputs/query_execution/function_changed_abi.snap diff --git a/test_outputs/function_const_removed.output.ron b/test_outputs/query_execution/function_const_removed.snap similarity index 100% rename from test_outputs/function_const_removed.output.ron rename to test_outputs/query_execution/function_const_removed.snap diff --git a/test_outputs/function_export_name_changed.output.ron b/test_outputs/query_execution/function_export_name_changed.snap similarity index 100% rename from test_outputs/function_export_name_changed.output.ron rename to test_outputs/query_execution/function_export_name_changed.snap diff --git a/test_outputs/function_missing.output.ron b/test_outputs/query_execution/function_missing.snap similarity index 100% rename from test_outputs/function_missing.output.ron rename to test_outputs/query_execution/function_missing.snap diff --git a/test_outputs/function_must_use_added.output.ron b/test_outputs/query_execution/function_must_use_added.snap similarity index 100% rename from test_outputs/function_must_use_added.output.ron rename to test_outputs/query_execution/function_must_use_added.snap diff --git a/test_outputs/function_now_doc_hidden.output.ron b/test_outputs/query_execution/function_now_doc_hidden.snap similarity index 100% rename from test_outputs/function_now_doc_hidden.output.ron rename to test_outputs/query_execution/function_now_doc_hidden.snap diff --git a/test_outputs/function_parameter_count_changed.output.ron b/test_outputs/query_execution/function_parameter_count_changed.snap similarity index 100% rename from test_outputs/function_parameter_count_changed.output.ron rename to test_outputs/query_execution/function_parameter_count_changed.snap diff --git a/test_outputs/function_unsafe_added.output.ron b/test_outputs/query_execution/function_unsafe_added.snap similarity index 100% rename from test_outputs/function_unsafe_added.output.ron rename to test_outputs/query_execution/function_unsafe_added.snap diff --git a/test_outputs/inherent_associated_const_now_doc_hidden.output.ron b/test_outputs/query_execution/inherent_associated_const_now_doc_hidden.snap similarity index 100% rename from test_outputs/inherent_associated_const_now_doc_hidden.output.ron rename to test_outputs/query_execution/inherent_associated_const_now_doc_hidden.snap diff --git a/test_outputs/inherent_associated_pub_const_missing.output.ron b/test_outputs/query_execution/inherent_associated_pub_const_missing.snap similarity index 100% rename from test_outputs/inherent_associated_pub_const_missing.output.ron rename to test_outputs/query_execution/inherent_associated_pub_const_missing.snap diff --git a/test_outputs/inherent_method_const_removed.output.ron b/test_outputs/query_execution/inherent_method_const_removed.snap similarity index 100% rename from test_outputs/inherent_method_const_removed.output.ron rename to test_outputs/query_execution/inherent_method_const_removed.snap diff --git a/test_outputs/inherent_method_missing.output.ron b/test_outputs/query_execution/inherent_method_missing.snap similarity index 100% rename from test_outputs/inherent_method_missing.output.ron rename to test_outputs/query_execution/inherent_method_missing.snap diff --git a/test_outputs/inherent_method_must_use_added.output.ron b/test_outputs/query_execution/inherent_method_must_use_added.snap similarity index 100% rename from test_outputs/inherent_method_must_use_added.output.ron rename to test_outputs/query_execution/inherent_method_must_use_added.snap diff --git a/test_outputs/inherent_method_now_doc_hidden.output.ron b/test_outputs/query_execution/inherent_method_now_doc_hidden.snap similarity index 100% rename from test_outputs/inherent_method_now_doc_hidden.output.ron rename to test_outputs/query_execution/inherent_method_now_doc_hidden.snap diff --git a/test_outputs/inherent_method_unsafe_added.output.ron b/test_outputs/query_execution/inherent_method_unsafe_added.snap similarity index 100% rename from test_outputs/inherent_method_unsafe_added.output.ron rename to test_outputs/query_execution/inherent_method_unsafe_added.snap diff --git a/test_outputs/method_parameter_count_changed.output.ron b/test_outputs/query_execution/method_parameter_count_changed.snap similarity index 100% rename from test_outputs/method_parameter_count_changed.output.ron rename to test_outputs/query_execution/method_parameter_count_changed.snap diff --git a/test_outputs/module_missing.output.ron b/test_outputs/query_execution/module_missing.snap similarity index 100% rename from test_outputs/module_missing.output.ron rename to test_outputs/query_execution/module_missing.snap diff --git a/test_outputs/pub_module_level_const_missing.output.ron b/test_outputs/query_execution/pub_module_level_const_missing.snap similarity index 100% rename from test_outputs/pub_module_level_const_missing.output.ron rename to test_outputs/query_execution/pub_module_level_const_missing.snap diff --git a/test_outputs/pub_module_level_const_now_doc_hidden.output.ron b/test_outputs/query_execution/pub_module_level_const_now_doc_hidden.snap similarity index 100% rename from test_outputs/pub_module_level_const_now_doc_hidden.output.ron rename to test_outputs/query_execution/pub_module_level_const_now_doc_hidden.snap diff --git a/test_outputs/pub_static_missing.output.ron b/test_outputs/query_execution/pub_static_missing.snap similarity index 100% rename from test_outputs/pub_static_missing.output.ron rename to test_outputs/query_execution/pub_static_missing.snap diff --git a/test_outputs/pub_static_mut_now_immutable.output.ron b/test_outputs/query_execution/pub_static_mut_now_immutable.snap similarity index 100% rename from test_outputs/pub_static_mut_now_immutable.output.ron rename to test_outputs/query_execution/pub_static_mut_now_immutable.snap diff --git a/test_outputs/pub_static_now_doc_hidden.output.ron b/test_outputs/query_execution/pub_static_now_doc_hidden.snap similarity index 100% rename from test_outputs/pub_static_now_doc_hidden.output.ron rename to test_outputs/query_execution/pub_static_now_doc_hidden.snap diff --git a/test_outputs/repr_c_removed.output.ron b/test_outputs/query_execution/repr_c_removed.snap similarity index 100% rename from test_outputs/repr_c_removed.output.ron rename to test_outputs/query_execution/repr_c_removed.snap diff --git a/test_outputs/repr_packed_added.output.ron b/test_outputs/query_execution/repr_packed_added.snap similarity index 100% rename from test_outputs/repr_packed_added.output.ron rename to test_outputs/query_execution/repr_packed_added.snap diff --git a/test_outputs/repr_packed_removed.output.ron b/test_outputs/query_execution/repr_packed_removed.snap similarity index 100% rename from test_outputs/repr_packed_removed.output.ron rename to test_outputs/query_execution/repr_packed_removed.snap diff --git a/test_outputs/sized_impl_removed.output.ron b/test_outputs/query_execution/sized_impl_removed.snap similarity index 100% rename from test_outputs/sized_impl_removed.output.ron rename to test_outputs/query_execution/sized_impl_removed.snap diff --git a/test_outputs/struct_marked_non_exhaustive.output.ron b/test_outputs/query_execution/struct_marked_non_exhaustive.snap similarity index 100% rename from test_outputs/struct_marked_non_exhaustive.output.ron rename to test_outputs/query_execution/struct_marked_non_exhaustive.snap diff --git a/test_outputs/struct_missing.output.ron b/test_outputs/query_execution/struct_missing.snap similarity index 100% rename from test_outputs/struct_missing.output.ron rename to test_outputs/query_execution/struct_missing.snap diff --git a/test_outputs/struct_must_use_added.output.ron b/test_outputs/query_execution/struct_must_use_added.snap similarity index 100% rename from test_outputs/struct_must_use_added.output.ron rename to test_outputs/query_execution/struct_must_use_added.snap diff --git a/test_outputs/struct_now_doc_hidden.output.ron b/test_outputs/query_execution/struct_now_doc_hidden.snap similarity index 100% rename from test_outputs/struct_now_doc_hidden.output.ron rename to test_outputs/query_execution/struct_now_doc_hidden.snap diff --git a/test_outputs/struct_pub_field_missing.output.ron b/test_outputs/query_execution/struct_pub_field_missing.snap similarity index 100% rename from test_outputs/struct_pub_field_missing.output.ron rename to test_outputs/query_execution/struct_pub_field_missing.snap diff --git a/test_outputs/struct_pub_field_now_doc_hidden.output.ron b/test_outputs/query_execution/struct_pub_field_now_doc_hidden.snap similarity index 100% rename from test_outputs/struct_pub_field_now_doc_hidden.output.ron rename to test_outputs/query_execution/struct_pub_field_now_doc_hidden.snap diff --git a/test_outputs/struct_repr_transparent_removed.output.ron b/test_outputs/query_execution/struct_repr_transparent_removed.snap similarity index 100% rename from test_outputs/struct_repr_transparent_removed.output.ron rename to test_outputs/query_execution/struct_repr_transparent_removed.snap diff --git a/test_outputs/struct_with_pub_fields_changed_type.output.ron b/test_outputs/query_execution/struct_with_pub_fields_changed_type.snap similarity index 100% rename from test_outputs/struct_with_pub_fields_changed_type.output.ron rename to test_outputs/query_execution/struct_with_pub_fields_changed_type.snap diff --git a/test_outputs/trait_added_supertrait.output.ron b/test_outputs/query_execution/trait_added_supertrait.snap similarity index 100% rename from test_outputs/trait_added_supertrait.output.ron rename to test_outputs/query_execution/trait_added_supertrait.snap diff --git a/test_outputs/trait_associated_const_added.output.ron b/test_outputs/query_execution/trait_associated_const_added.snap similarity index 100% rename from test_outputs/trait_associated_const_added.output.ron rename to test_outputs/query_execution/trait_associated_const_added.snap diff --git a/test_outputs/trait_associated_const_default_removed.output.ron b/test_outputs/query_execution/trait_associated_const_default_removed.snap similarity index 100% rename from test_outputs/trait_associated_const_default_removed.output.ron rename to test_outputs/query_execution/trait_associated_const_default_removed.snap diff --git a/test_outputs/trait_associated_const_now_doc_hidden.output.ron b/test_outputs/query_execution/trait_associated_const_now_doc_hidden.snap similarity index 100% rename from test_outputs/trait_associated_const_now_doc_hidden.output.ron rename to test_outputs/query_execution/trait_associated_const_now_doc_hidden.snap diff --git a/test_outputs/trait_associated_type_added.output.ron b/test_outputs/query_execution/trait_associated_type_added.snap similarity index 100% rename from test_outputs/trait_associated_type_added.output.ron rename to test_outputs/query_execution/trait_associated_type_added.snap diff --git a/test_outputs/trait_associated_type_default_removed.output.ron b/test_outputs/query_execution/trait_associated_type_default_removed.snap similarity index 100% rename from test_outputs/trait_associated_type_default_removed.output.ron rename to test_outputs/query_execution/trait_associated_type_default_removed.snap diff --git a/test_outputs/trait_associated_type_now_doc_hidden.output.ron b/test_outputs/query_execution/trait_associated_type_now_doc_hidden.snap similarity index 100% rename from test_outputs/trait_associated_type_now_doc_hidden.output.ron rename to test_outputs/query_execution/trait_associated_type_now_doc_hidden.snap diff --git a/test_outputs/trait_method_added.output.ron b/test_outputs/query_execution/trait_method_added.snap similarity index 100% rename from test_outputs/trait_method_added.output.ron rename to test_outputs/query_execution/trait_method_added.snap diff --git a/test_outputs/trait_method_default_impl_removed.output.ron b/test_outputs/query_execution/trait_method_default_impl_removed.snap similarity index 100% rename from test_outputs/trait_method_default_impl_removed.output.ron rename to test_outputs/query_execution/trait_method_default_impl_removed.snap diff --git a/test_outputs/trait_method_missing.output.ron b/test_outputs/query_execution/trait_method_missing.snap similarity index 100% rename from test_outputs/trait_method_missing.output.ron rename to test_outputs/query_execution/trait_method_missing.snap diff --git a/test_outputs/trait_method_now_doc_hidden.output.ron b/test_outputs/query_execution/trait_method_now_doc_hidden.snap similarity index 100% rename from test_outputs/trait_method_now_doc_hidden.output.ron rename to test_outputs/query_execution/trait_method_now_doc_hidden.snap diff --git a/test_outputs/trait_method_unsafe_added.output.ron b/test_outputs/query_execution/trait_method_unsafe_added.snap similarity index 100% rename from test_outputs/trait_method_unsafe_added.output.ron rename to test_outputs/query_execution/trait_method_unsafe_added.snap diff --git a/test_outputs/trait_method_unsafe_removed.output.ron b/test_outputs/query_execution/trait_method_unsafe_removed.snap similarity index 100% rename from test_outputs/trait_method_unsafe_removed.output.ron rename to test_outputs/query_execution/trait_method_unsafe_removed.snap diff --git a/test_outputs/trait_missing.output.ron b/test_outputs/query_execution/trait_missing.snap similarity index 100% rename from test_outputs/trait_missing.output.ron rename to test_outputs/query_execution/trait_missing.snap diff --git a/test_outputs/trait_must_use_added.output.ron b/test_outputs/query_execution/trait_must_use_added.snap similarity index 100% rename from test_outputs/trait_must_use_added.output.ron rename to test_outputs/query_execution/trait_must_use_added.snap diff --git a/test_outputs/trait_newly_sealed.output.ron b/test_outputs/query_execution/trait_newly_sealed.snap similarity index 100% rename from test_outputs/trait_newly_sealed.output.ron rename to test_outputs/query_execution/trait_newly_sealed.snap diff --git a/test_outputs/trait_no_longer_object_safe.output.ron b/test_outputs/query_execution/trait_no_longer_object_safe.snap similarity index 100% rename from test_outputs/trait_no_longer_object_safe.output.ron rename to test_outputs/query_execution/trait_no_longer_object_safe.snap diff --git a/test_outputs/trait_now_doc_hidden.output.ron b/test_outputs/query_execution/trait_now_doc_hidden.snap similarity index 100% rename from test_outputs/trait_now_doc_hidden.output.ron rename to test_outputs/query_execution/trait_now_doc_hidden.snap diff --git a/test_outputs/trait_removed_associated_constant.output.ron b/test_outputs/query_execution/trait_removed_associated_constant.snap similarity index 100% rename from test_outputs/trait_removed_associated_constant.output.ron rename to test_outputs/query_execution/trait_removed_associated_constant.snap diff --git a/test_outputs/trait_removed_associated_type.output.ron b/test_outputs/query_execution/trait_removed_associated_type.snap similarity index 100% rename from test_outputs/trait_removed_associated_type.output.ron rename to test_outputs/query_execution/trait_removed_associated_type.snap diff --git a/test_outputs/trait_removed_supertrait.output.ron b/test_outputs/query_execution/trait_removed_supertrait.snap similarity index 100% rename from test_outputs/trait_removed_supertrait.output.ron rename to test_outputs/query_execution/trait_removed_supertrait.snap diff --git a/test_outputs/trait_unsafe_added.output.ron b/test_outputs/query_execution/trait_unsafe_added.snap similarity index 100% rename from test_outputs/trait_unsafe_added.output.ron rename to test_outputs/query_execution/trait_unsafe_added.snap diff --git a/test_outputs/trait_unsafe_removed.output.ron b/test_outputs/query_execution/trait_unsafe_removed.snap similarity index 100% rename from test_outputs/trait_unsafe_removed.output.ron rename to test_outputs/query_execution/trait_unsafe_removed.snap diff --git a/test_outputs/tuple_struct_to_plain_struct.output.ron b/test_outputs/query_execution/tuple_struct_to_plain_struct.snap similarity index 100% rename from test_outputs/tuple_struct_to_plain_struct.output.ron rename to test_outputs/query_execution/tuple_struct_to_plain_struct.snap diff --git a/test_outputs/type_marked_deprecated.output.ron b/test_outputs/query_execution/type_marked_deprecated.snap similarity index 100% rename from test_outputs/type_marked_deprecated.output.ron rename to test_outputs/query_execution/type_marked_deprecated.snap diff --git a/test_outputs/union_field_missing.output.ron b/test_outputs/query_execution/union_field_missing.snap similarity index 100% rename from test_outputs/union_field_missing.output.ron rename to test_outputs/query_execution/union_field_missing.snap diff --git a/test_outputs/union_missing.output.ron b/test_outputs/query_execution/union_missing.snap similarity index 100% rename from test_outputs/union_missing.output.ron rename to test_outputs/query_execution/union_missing.snap diff --git a/test_outputs/union_must_use_added.output.ron b/test_outputs/query_execution/union_must_use_added.snap similarity index 100% rename from test_outputs/union_must_use_added.output.ron rename to test_outputs/query_execution/union_must_use_added.snap diff --git a/test_outputs/union_now_doc_hidden.output.ron b/test_outputs/query_execution/union_now_doc_hidden.snap similarity index 100% rename from test_outputs/union_now_doc_hidden.output.ron rename to test_outputs/query_execution/union_now_doc_hidden.snap diff --git a/test_outputs/union_pub_field_now_doc_hidden.output.ron b/test_outputs/query_execution/union_pub_field_now_doc_hidden.snap similarity index 100% rename from test_outputs/union_pub_field_now_doc_hidden.output.ron rename to test_outputs/query_execution/union_pub_field_now_doc_hidden.snap diff --git a/test_outputs/unit_struct_changed_kind.output.ron b/test_outputs/query_execution/unit_struct_changed_kind.snap similarity index 100% rename from test_outputs/unit_struct_changed_kind.output.ron rename to test_outputs/query_execution/unit_struct_changed_kind.snap