summaryrefslogtreecommitdiff
path: root/tests/manual/ssh/remoteprocess/remoteprocesstest.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-04-01 09:58:29 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2011-04-01 09:58:29 +0200
commitafa13623cdc44b64a8801d3f9dff67bdec788a11 (patch)
treeb6fbbf78480217bf4c292f9259e7358e871229a9 /tests/manual/ssh/remoteprocess/remoteprocesstest.h
parentb32cddad4804b0b627025f37b94d58ce7068f188 (diff)
downloadqt-creator-afa13623cdc44b64a8801d3f9dff67bdec788a11.tar.gz
SSH: Fix tests to adapt to new location (utils vs. core plugin).
Diffstat (limited to 'tests/manual/ssh/remoteprocess/remoteprocesstest.h')
-rw-r--r--tests/manual/ssh/remoteprocess/remoteprocesstest.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/manual/ssh/remoteprocess/remoteprocesstest.h b/tests/manual/ssh/remoteprocess/remoteprocesstest.h
index 2cb4cfb676..97772c1533 100644
--- a/tests/manual/ssh/remoteprocess/remoteprocesstest.h
+++ b/tests/manual/ssh/remoteprocess/remoteprocesstest.h
@@ -34,7 +34,7 @@
#ifndef SFTPTEST_H
#define SFTPTEST_H
-#include <coreplugin/ssh/sshremoteprocessrunner.h>
+#include <utils/ssh/sshremoteprocessrunner.h>
QT_FORWARD_DECLARE_CLASS(QTimer);
#include <QtCore/QObject>
@@ -43,7 +43,7 @@ class RemoteProcessTest : public QObject
{
Q_OBJECT
public:
- RemoteProcessTest(const Core::SshConnectionParameters &params);
+ RemoteProcessTest(const Utils::SshConnectionParameters &params);
~RemoteProcessTest();
void run();
@@ -59,7 +59,7 @@ private:
enum State { Inactive, TestingSuccess, TestingFailure, TestingCrash };
QTimer * const m_timeoutTimer;
- const Core::SshRemoteProcessRunner::Ptr m_remoteRunner;
+ const Utils::SshRemoteProcessRunner::Ptr m_remoteRunner;
QByteArray m_remoteStdout;
QByteArray m_remoteStderr;
State m_state;