summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2009-07-10 19:07:54 +0000
committerChris Wilson <chris+github@qwirx.com>2009-07-10 19:07:54 +0000
commit59d8d06d8039d16db6c1f47b9b88bad9a105d086 (patch)
tree1251cbe6cdd66b0e4ed8dbc3c150a6d644edc7db
parent78d2d63c8f9b15c2b69cd5a410961e612a72452f (diff)
Change bbstored port in backupstorepatch test to 22011.
-rw-r--r--test/backupstorepatch/testbackupstorepatch.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/backupstorepatch/testbackupstorepatch.cpp b/test/backupstorepatch/testbackupstorepatch.cpp
index 23b01b15..62db6195 100644
--- a/test/backupstorepatch/testbackupstorepatch.cpp
+++ b/test/backupstorepatch/testbackupstorepatch.cpp
@@ -332,7 +332,8 @@ int test(int argc, const char *argv[])
{
// Open a connection to the server
SocketStreamTLS conn;
- conn.Open(context, Socket::TypeINET, "localhost", BOX_PORT_BBSTORED);
+ conn.Open(context, Socket::TypeINET, "localhost",
+ BOX_PORT_BBSTORED_TEST);
// Make a protocol
BackupProtocolClient protocol(conn);
@@ -500,7 +501,8 @@ int test(int argc, const char *argv[])
// Open a connection to the server (need to do this each time, otherwise housekeeping won't delete files)
SocketStreamTLS conn;
- conn.Open(context, Socket::TypeINET, "localhost", BOX_PORT_BBSTORED);
+ conn.Open(context, Socket::TypeINET, "localhost",
+ BOX_PORT_BBSTORED_TEST);
BackupProtocolClient protocol(conn);
{
std::auto_ptr<BackupProtocolClientVersion> serverVersion(protocol.QueryVersion(BACKUP_STORE_SERVER_VERSION));