aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test
diff options
context:
space:
mode:
authorEduardo Julian2018-12-06 23:04:41 -0400
committerEduardo Julian2018-12-06 23:04:41 -0400
commit9f07e772cd9758ca5f4c516e78d50a1db581c910 (patch)
tree12a736cb76b99972258d79867cf7ee53b0a1b48a /stdlib/test
parentdbcf62dcd86798bc1ce2d3bb9c61dbb189fb8fc9 (diff)
Adapted other world signatures to the capability model.
Diffstat (limited to 'stdlib/test')
-rw-r--r--stdlib/test/test/lux/world/net/udp.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/test/test/lux/world/net/udp.lux b/stdlib/test/test/lux/world/net/udp.lux
index d630816d8..e41082d35 100644
--- a/stdlib/test/test/lux/world/net/udp.lux
+++ b/stdlib/test/test/lux/world/net/udp.lux
@@ -42,12 +42,12 @@
[server (@.server port)
client @.client
####################
- _ (:: client write [localhost port] from)
+ _ (:: client write [[localhost port] from])
[bytes-from [from-address from-port] temp] (:: server read size)
#let [from-worked? (and (n/= size bytes-from)
(:: binary.Equivalence<Binary> = from (taint.trust temp)))]
####################
- _ (:: server write [from-address from-port] to)
+ _ (:: server write [[from-address from-port] to])
[bytes-to [to-address to-port] temp] (:: client read size)
#let [to-worked? (and (n/= size bytes-to)
(:: binary.Equivalence<Binary> = to (taint.trust temp))