aboutsummaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2024-01-30 09:31:09 +0000
committerOmar Polo <op@omarpolo.com>2024-01-30 09:31:09 +0000
commitbb5a25d287c92391f4a010b18fcbf4cc0f35ad69 (patch)
treee5de9a852704665b193af6a439369f9e65d8b469 /regress
parentf862d389ff60b517257e709b739ad13309d53be4 (diff)
rename the @common_opt macro back to @common
now common is no longer a reserved keyword
Diffstat (limited to 'regress')
-rw-r--r--regress/tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/tests.sh b/regress/tests.sh
index 7a2c2cd..72ad303 100644
--- a/regress/tests.sh
+++ b/regress/tests.sh
@@ -287,7 +287,7 @@ test_fastcgi_deprecated_syntax() {
test_macro_expansion() {
cat <<EOF > reg.conf
pwd = "$PWD"
-common_opts = "lang it; auto index on"
+common = "lang it; auto index on"
server "localhost" {
# the quoting of \$ is for sh
@@ -295,7 +295,7 @@ server "localhost" {
key \$pwd "/localhost.key"
root \$pwd "/testdata"
listen on $REGRESS_HOST port $port
- @common_opts
+ @common
}
EOF