We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d09eebb commit 3963888Copy full SHA for 3963888
test/clj_libssh2/test_ssh.clj
@@ -60,7 +60,7 @@
60
(is (= 0 (:exit result)))))
61
(testing "Commands can be given a lot of input on STDIN"
62
(let [input-line (str (str/join "" (repeat 1024 "x")) "\n")
63
- input (str/join "" (repeat (* 10 1024) input-line))
+ input (str/join "" (repeat 1024 input-line))
64
result (ssh/exec session timeout-cat :in input)]
65
(is (= (count input) (count (:out result))))
66
(is (= "" (:err result)))
0 commit comments