chore & fix: fix broken link

master
Aravinth Manivannan 2022-04-05 12:43:46 +05:30
parent d88f0e8bff
commit 8f2a8ed1a1
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
1 changed files with 4 additions and 4 deletions

View File

@ -163,10 +163,10 @@ mod tests {
const NAME: &str = "bob";
const GIST: &str = "foo";
const FILE: &str = "README.md";
let get_profile = format!("/{NAME}");
let view_gist = format!("/{NAME}/{GIST}");
let post_comment = format!("/{NAME}/{GIST}/comment");
let get_file = format!("/{NAME}/{GIST}/contents/{FILE}");
let get_profile = format!("/~{NAME}");
let view_gist = format!("/~{NAME}/{GIST}");
let post_comment = format!("/~{NAME}/{GIST}/comment");
let get_file = format!("/~{NAME}/{GIST}/contents/{FILE}");
let profile_component = GistProfilePathComponent { username: NAME };