Skip to content

Commit 54efaf3

Browse files
authored
Merge pull request #624 from clj-commons/bugfix/udp-test-echo-broken-on-macs
Remove epoll request in test
2 parents 3186214 + 2e15da7 commit 54efaf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/aleph/udp_test.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
(.close ^java.io.Closeable server#)))))
1717

1818
(deftest test-echo
19-
(let [s @(udp/socket {:port 10001, :epoll? true})]
19+
(let [s @(udp/socket {:port 10001})]
2020
(s/put! s {:host "localhost", :port 10001, :message "foo"})
2121
(is (= "foo"
2222
(bs/to-string

0 commit comments

Comments
 (0)