Skip to content

Commit

Permalink
Fix typoed IP address
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgray committed Mar 6, 2017
1 parent 10733ee commit a04d223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib_test/test_ipv6.ml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ let listen ?(tcp = noop) ?(udp = noop) ?(default = noop) stack =
let udp_message = Cstruct.of_string "hello on UDP over IPv6"

let check_for_one_udp_packet netif ~src ~dst buf =
Alcotest.(check ip) "sender address" (Ipaddr.V6.of_string_exn "fc00::24") src;
Alcotest.(check ip) "sender address" (Ipaddr.V6.of_string_exn "fc00::23") src;
Alcotest.(check ip) "receiver address" (Ipaddr.V6.of_string_exn "fc00::45") dst;
(match Udp_packet.Unmarshal.of_cstruct buf with
| Ok (_, payload) ->
Expand Down

0 comments on commit a04d223

Please sign in to comment.