diff --git a/crates/ruma-common/tests/api/ui/09-removed-without-deprecated copy.rs b/crates/ruma-common/tests/api/ui/09-removed-without-deprecated copy.rs deleted file mode 100644 index 2aef086b..00000000 --- a/crates/ruma-common/tests/api/ui/09-removed-without-deprecated copy.rs +++ /dev/null @@ -1,23 +0,0 @@ -use ruma_common::api::ruma_api; - -ruma_api! { - metadata: { - description: "This will fail.", - method: GET, - name: "invalid_versions", - path: "/a/path", - rate_limited: false, - authentication: None, - - removed: 1.1, - } - - request: { - #[ruma_api(query_map)] - pub fields: Vec<(String, String)>, - } - - response: {} -} - -fn main() {}