aboutsummaryrefslogtreecommitdiff
path: root/examples/working-loaded/httpServer.test
diff options
context:
space:
mode:
Diffstat (limited to 'examples/working-loaded/httpServer.test')
-rw-r--r--examples/working-loaded/httpServer.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/working-loaded/httpServer.test b/examples/working-loaded/httpServer.test
index fdfce61..47ff274 100644
--- a/examples/working-loaded/httpServer.test
+++ b/examples/working-loaded/httpServer.test
@@ -3,10 +3,10 @@ net .alg .httpServer "+" via
{ ":" via
:url dump
[
- { :url "/" streq } {
+ { :url "/" eq } {
"<html><body>Hallo Welt!<a href=\"/test\">Test</a></body></html>"
"text/html" :ok
- } { :url "/test" streq } {
+ } { :url "/test" eq } {
"<html><body>Test!</body></html>"
"text/html" :ok
}