From 13739785d069d00ee0a765b8bb68d30a3b0fab10 Mon Sep 17 00:00:00 2001 From: Dan <39170265+chillenberger@users.noreply.github.com> Date: Wed, 20 Dec 2023 15:23:32 -0700 Subject: [PATCH] shoudld be ok not 400 --- pgml-dashboard/src/api/cms.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgml-dashboard/src/api/cms.rs b/pgml-dashboard/src/api/cms.rs index 6b234df42..a5cc975f2 100644 --- a/pgml-dashboard/src/api/cms.rs +++ b/pgml-dashboard/src/api/cms.rs @@ -550,7 +550,7 @@ This is the end of the markdown let rsp = req.dispatch().await; assert!( - rsp.status() == Status::NotFound, + rsp.status() == Status::Ok, "Returned status {:?}", rsp.status() );