From 3eb82950f253d1ab1fc3c019498160c97aec417e Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Tue, 1 Nov 2022 12:39:55 +0100 Subject: [PATCH] Remove accidentally duplicated file --- .../ui/09-removed-without-deprecated copy.rs | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 crates/ruma-common/tests/api/ui/09-removed-without-deprecated copy.rs 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() {}