Skip to content

Commit 497c21f

Browse files
committed
fixup! fixup! Fix typo
1 parent 91ad622 commit 497c21f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/manifold/executor_test.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@
5959
(is (.newThread tf (constantly nil))))
6060
(let [tf (thread-factory
6161
(fn [group target _ stack-size]
62-
(proxy [Thread] [group target "custom-name" stack-size])))
62+
(Thread. group target "custom-name" stack-size)))
6363
thread (.newThread tf (constantly nil))]
6464
(is (= "custom-name" (.getName thread))))
6565
(let [tf (thread-factory
6666
(fn [group target _ stack-size]
67-
(proxy [Thread] [group target "custom-name" stack-size]))
67+
(Thread. group target "custom-name" stack-size))
6868
500)
6969
thread (.newThread tf (constantly nil))]
7070
(is (= "custom-name" (.getName thread)))))

0 commit comments

Comments
 (0)