Skip to content

Commit 72e3666

Browse files
committed
Fix fill-human-multi vector case
Incorrectly used `fill` rather than `fill-human` in the implementation and didn't pass the options either.
1 parent b4f93eb commit 72e3666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etaoin/api.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2867,7 +2867,7 @@
28672867
(vector? q-text)
28682868
(if (even? (count q-text))
28692869
(doseq [[q text] (partition 2 q-text)]
2870-
(fill driver q text))
2870+
(fill-human driver q text opts))
28712871
(throw+ {:type :etaoin/argument
28722872
:message "Vector q-text must have even length"
28732873
:q-text q-text

0 commit comments

Comments
 (0)