Skip to content

Commit

Permalink
tests/client-server: Fix a test case
Browse files Browse the repository at this point in the history
* tests/client-server.scm ("userauth-public-key!, success (RSA)"): Skip when
libssh 0.9+ is used.
  • Loading branch information
artyom-poptsov committed Nov 10, 2024
1 parent 2c99a46 commit 4d51a86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/client-server.scm
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@
(let* ((version (get-libssh-version))
(version (map string->number (string-split version #\.))))
(when (and (zero? (car version))
(>= (cadr version) 11))
(>= (cadr version) 9))
(test-skip "userauth-public-key!, success (RSA)")))

(test-equal-with-log "userauth-public-key!, success (RSA)"
Expand Down

0 comments on commit 4d51a86

Please sign in to comment.