summaryrefslogtreecommitdiff
path: root/src/channel
diff options
context:
space:
mode:
Diffstat (limited to 'src/channel')
-rw-r--r--src/channel/routes/channel/test/delete.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/channel/routes/channel/test/delete.rs b/src/channel/routes/channel/test/delete.rs
index e9af12f..e1210fd 100644
--- a/src/channel/routes/channel/test/delete.rs
+++ b/src/channel/routes/channel/test/delete.rs
@@ -9,7 +9,7 @@ use crate::{
};
#[tokio::test]
-pub async fn delete_channel() {
+pub async fn valid_channel() {
// Set up the environment
let app = fixtures::scratch_app().await;
@@ -38,7 +38,7 @@ pub async fn delete_channel() {
}
#[tokio::test]
-pub async fn delete_invalid_channel_id() {
+pub async fn invalid_channel_id() {
// Set up the environment
let app = fixtures::scratch_app().await;
@@ -62,7 +62,7 @@ pub async fn delete_invalid_channel_id() {
}
#[tokio::test]
-pub async fn delete_deleted() {
+pub async fn channel_deleted() {
// Set up the environment
let app = fixtures::scratch_app().await;
@@ -91,7 +91,7 @@ pub async fn delete_deleted() {
}
#[tokio::test]
-pub async fn delete_expired() {
+pub async fn channel_expired() {
// Set up the environment
let app = fixtures::scratch_app().await;
@@ -120,7 +120,7 @@ pub async fn delete_expired() {
}
#[tokio::test]
-pub async fn delete_purged() {
+pub async fn channel_purged() {
// Set up the environment
let app = fixtures::scratch_app().await;