mirror of https://github.com/rwf2/Rocket.git
Remove latent 'dbg!()' in templating tests.
This commit is contained in:
parent
0ffcfae47b
commit
95e9b2e9ef
|
@ -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! {
|
||||
|
|
Loading…
Reference in New Issue