Skip to content

Commit

Permalink
tests: adjust template render_error expected error
Browse files Browse the repository at this point in the history
to account for fixes in minijinja
  • Loading branch information
jqnatividad committed Dec 15, 2024
1 parent cdcc5e2 commit b72cb72
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -461,8 +461,7 @@ fn template_render_error() {

wrk.assert_err(&mut *&mut cmd);
let got: String = wrk.output_stderr(&mut cmd);
let expected =
"syntax error: unexpected `}}`, expected end of variable block (in template:1)\n";
let expected = "syntax error: unexpected `}`, expected end of variable block (in template:1)\n";
assert_eq!(got, expected);
}

Expand Down

0 comments on commit b72cb72

Please sign in to comment.