Skip to content

Commit 13d685d

Browse files
committed
Fix spec lists
1 parent bb49f1d commit 13d685d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test-engine/lib/tpl/explain-test.liquid

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ Test ID: `{{ test.id }}`
2222
Spec References:
2323

2424
{% for anchor in test.spec_anchors %}
25-
{%- assign is_url = anchor | slice: 0, 4 -%}
25+
{% assign is_url = anchor | slice: 0, 4 -%}
2626
{%- if is_url == "http" -%}
2727
* <{{ anchor }}>
2828
{%- else -%}
2929
* [{{ anchor }}](https://httpwg.org/specs/rfc9111.html#{{ anchor }})
30-
{%- endif -%}
31-
{%- endfor %}
30+
{% endif -%}
31+
{% endfor %}
3232
{%- endif %}
3333

3434
{% for request in test.requests -%}
@@ -86,7 +86,7 @@ HTTP/1.1 {{ interim_response[0] }}
8686
{% endfor %}
8787
{% endfor -%}
8888
{%- endif -%}
89-
{% if request.expected_type == "lm_validated" or request.expected_type = "etag_validated" -%}
89+
{% if request.expected_type == "lm_validated" or request.expected_type == "etag_validated" -%}
9090
HTTP/1.1 304 Not Modified
9191
{%- else -%}
9292
HTTP/1.1 {{ request.response_status[0] | default: 200 }} {{ request.response_status[1] | default: "OK" }}

0 commit comments

Comments
 (0)