Remove latent 'dbg!()' in templating tests.

This commit is contained in:
Sergio Benitez 2021-07-02 11:33:32 -07:00
parent 0ffcfae47b
commit 95e9b2e9ef
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ fn test_404(base: &str) {
let response = client.get(&path).dispatch();
assert_eq!(response.status(), Status::NotFound);
let response = dbg!(response.into_string().unwrap());
let response = response.into_string().unwrap();
assert!(response.contains(base));
assert! {