Skip to content

Commit

Permalink
handle 3.9- test outcome
Browse files Browse the repository at this point in the history
  • Loading branch information
ikappaki committed Nov 11, 2024
1 parent 794449e commit 1393a12
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/basilisp_nrepl_async/nrepl_server_test.lpy
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,10 @@
(.sendall sock encoded)
(.recv sock 1024)))))))
{:keys [error]} (deref client-thread 1000 nil)]
(is (str/starts-with? (u/error->str error) ":server-make-async-test-error TimeoutError('timed out')")
(is (str/starts-with? (u/error->str error) #?(:lpy39-
":server-make-async-test-error timeout('timed out')"
:lpy310+
":server-make-async-test-error TimeoutError('timed out')"))
(u/error->str error)))

(let [work-fut (future
Expand Down

0 comments on commit 1393a12

Please sign in to comment.