diff options
author | James Booth <boothj5@gmail.com> | 2013-12-15 19:38:23 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-12-15 19:38:23 +0000 |
commit | 079ea5304b7bc99b07d2f05b2910ab370023c14d (patch) | |
tree | 284d37758af9592017e38effadeb986583ea5205 /tests/xmpp | |
parent | eff2ef3859e66542b5ce16efd800c3ece63caf71 (diff) | |
download | profani-tty-079ea5304b7bc99b07d2f05b2910ab370023c14d.tar.gz |
Moved _ask_password to UI module
Diffstat (limited to 'tests/xmpp')
-rw-r--r-- | tests/xmpp/mock_xmpp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/xmpp/mock_xmpp.c b/tests/xmpp/mock_xmpp.c index 8ba03cab..26c9c72d 100644 --- a/tests/xmpp/mock_xmpp.c +++ b/tests/xmpp/mock_xmpp.c @@ -32,6 +32,9 @@ void jabber_init(const int disable_tls) {} jabber_conn_status_t jabber_connect_with_details(const char * const jid, const char * const passwd, const char * const altdomain) { + check_expected(jid); + check_expected(passwd); + check_expected(altdomain); return (jabber_conn_status_t)mock(); } |