From cf82dd6456569f661b2d03e9510447c19eadda41 Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Sun, 31 Aug 2025 11:52:26 +0200 Subject: [PATCH] it: enable accidentally disabled test --- src/it/tests.rs | 3 ++- src/it/tests/{t0032_content_type.rs => t0045_content_type.rs} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename src/it/tests/{t0032_content_type.rs => t0045_content_type.rs} (100%) diff --git a/src/it/tests.rs b/src/it/tests.rs index aa865a20..dbf3ff79 100644 --- a/src/it/tests.rs +++ b/src/it/tests.rs @@ -62,7 +62,6 @@ mod t0028_top_level_restacking; mod t0029_double_click_float; mod t0030_cursor_shape; mod t0031_syncobj; -mod t0032_content_type; mod t0032_data_control; mod t0033_float_size_memoization; mod t0034_workspace_restoration; @@ -76,6 +75,7 @@ mod t0041_input_method; mod t0042_toplevel_select; mod t0043_destroy_registry; mod t0044_stacked_focus; +mod t0045_content_type; pub trait TestCase: Sync { fn name(&self) -> &'static str; @@ -139,5 +139,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> { t0042_toplevel_select, t0043_destroy_registry, t0044_stacked_focus, + t0045_content_type, } } diff --git a/src/it/tests/t0032_content_type.rs b/src/it/tests/t0045_content_type.rs similarity index 100% rename from src/it/tests/t0032_content_type.rs rename to src/it/tests/t0045_content_type.rs