diff options
Diffstat (limited to 'stdlib/test')
-rw-r--r-- | stdlib/test/test/lux/world/net/udp.lux | 4 |
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)) |