From 5a3899ffe267d4f88dffc6174398068c264db3fc Mon Sep 17 00:00:00 2001 From: shockrahwow Date: Wed, 27 Nov 2019 23:46:06 -0800 Subject: [PATCH] all webroutes passing tests(yay!) --- server/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main.rs b/server/src/main.rs index e7319cb..4e305dc 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -69,7 +69,7 @@ mod test { #[test] fn static_css_get() { let client = Client::new(rocket()).expect("Valid rocket instance"); - check_get!(client, "/static/index.css"); + check_get!(client, "/static/css/index.css"); check_get!(client, "/static/css/about.css"); }