aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-01-13 22:52:48 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-01-13 22:52:48 +0100
commitca8af853b6625d0300f2d7d347a279ece6099e44 (patch)
tree09d583601b73b062ba9a17b2514759ba3c77f253
parentMerge branch 'doc' into jcal (diff)
downloadcalp-ca8af853b6625d0300f2d7d347a279ece6099e44.tar.gz
calp-ca8af853b6625d0300f2d7d347a279ece6099e44.tar.xz
Fix broken test.
-rw-r--r--tests/server.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server.scm b/tests/server.scm
index 706697f6..d21c11da 100644
--- a/tests/server.scm
+++ b/tests/server.scm
@@ -10,7 +10,7 @@
;; Checks that parsing produces correct results
(let* ((path args (parse-endpoint-string "/static/:dir/:file")))
- (test-equal "/static/([^/]+)/([^/]+)" path)
+ (test-equal "/static/([^/.]+)/([^/.]+)" path)
(test-equal '(dir file) args))