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 d756afe commit f01807eCopy full SHA for f01807e
test/clj_ssh/ssh_test.clj
@@ -375,9 +375,9 @@ list, Alan Dipert and MeikelBrandmeyer."
375
376
377
(defn test-sftp-transient-with [channel & options]
378
- (let [dir (sftp channel :ls "/")]
+ (let [dir (apply sftp channel :ls "/" options)]
379
(apply sftp channel :cd "/" options)
380
- (is (not= "/" (sftp channel :pwd)))
+ (is (not= "/" (apply sftp channel :pwd options)))
381
(let [tmpfile1 (java.io.File/createTempFile "clj-ssh" "test")
382
tmpfile2 (java.io.File/createTempFile "clj-ssh" "test")
383
file1 (.getPath tmpfile1)
0 commit comments