Rename integration test.

This commit is contained in:
Jean-Christophe Amiel 2024-07-04 16:17:51 +02:00
parent 3141e344cd
commit e68fd335f6
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC
7 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl --no-output tests_ok/query_cache.hurl
hurl --no-output tests_ok/parse_cache.hurl

View File

@ -4,7 +4,7 @@ from flask import Response, make_response
@app.route("/large/html")
def large_html():
data = open("tests_ok/query_cache.html.gz", "rb")
data = open("tests_ok/parse_cache.html.gz", "rb")
resp = make_response(data)
resp.headers["Content-Encoding"] = "gzip"
return resp

View File

@ -0,0 +1,4 @@
#!/bin/bash
set -Eeuo pipefail
hurl --no-output tests_ok/parse_cache.hurl

View File

@ -1,4 +0,0 @@
#!/bin/bash
set -Eeuo pipefail
hurl --no-output tests_ok/query_cache.hurl