aboutsummaryrefslogtreecommitdiff
path: root/examples/working-loaded
diff options
context:
space:
mode:
authorDrahflow <drahflow@gmx.de>2014-01-06 23:13:21 +0100
committerDrahflow <drahflow@gmx.de>2014-01-06 23:13:21 +0100
commit90d664bc9e77530113c9a65bd02bae4667a2c25c (patch)
tree289e69b262ef72e09816981817e48d24aeec9a31 /examples/working-loaded
parentdef28d4cbac907f45ad083f01a34aca5f1c78fe8 (diff)
streq -> eq
Diffstat (limited to 'examples/working-loaded')
-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
}