diff options
author | Wojtek Kosior <koszko@koszko.org> | 2023-12-19 15:31:38 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2023-12-19 15:31:38 +0100 |
commit | d8776e1ca00711b4153a827ed604eba55f7cd62b (patch) | |
tree | 304c9824bef2a958b620254675fd03cead5817b5 /tests | |
parent | aba77461ac0927285dfea4baf59b3bf3a9e6d2b8 (diff) | |
download | cantius-d8776e1ca00711b4153a827ed604eba55f7cd62b.tar.gz cantius-d8776e1ca00711b4153a827ed604eba55f7cd62b.zip |
Allow handlers to only return response body.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guile/cantius-test.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/guile/cantius-test.scm b/tests/guile/cantius-test.scm index deceab5..f3e628a 100644 --- a/tests/guile/cantius-test.scm +++ b/tests/guile/cantius-test.scm @@ -49,9 +49,8 @@ (define-endpoint %my-endset about-ms ("cool-companies" "ms" "about") '() - (values (build-response*) - "Microsoft is my favorite company. I started using - Microsoft at the age of...")) + "Microsoft is my favorite company. I started using + Microsoft at the age of...") (define-endpoint %my-endset broken ("cool-companies" "ms" "product-list") '() |