erlyaws / yaws

Yaws webserver
https://erlyaws.github.io
BSD 3-Clause "New" or "Revised" License
1.28k stars 267 forks source link

Fix test failing on OTP 27.0-rc1 #483

Closed avtobiff closed 7 months ago

avtobiff commented 7 months ago

The yaws_compile_SUITE:compile_www_scripts test fails on OTP 27.0-rc1.

Apparently whitespace is now needed for adjacent strings, e.g.:

"my""string"

does not compile any longer since whitespace separation is needed, e.g.:

"my" "string"

or with a newline:

"my"
"string"

Fixes #482