summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/backupstore/StoreTestUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/backupstore/StoreTestUtils.h b/lib/backupstore/StoreTestUtils.h
index 7ef2ce28..197a3345 100644
--- a/lib/backupstore/StoreTestUtils.h
+++ b/lib/backupstore/StoreTestUtils.h
@@ -83,7 +83,7 @@ bool delete_account();
#define TEST_PROTOCOL_ERROR_OR(protocol, error, or_statements) \
{ \
int type, subtype; \
- protocol.GetLastError(type, subtype); \
+ (protocol).GetLastError(type, subtype); \
if (type == BackupProtocolError::ErrorType) \
{ \
TEST_EQUAL_LINE(BackupProtocolError::error, subtype, \
@@ -102,7 +102,7 @@ bool delete_account();
}
#define TEST_COMMAND_RETURNS_ERROR_OR(protocol, command, error, or_statements) \
- TEST_CHECK_THROWS_OR(protocol . command, ConnectionException, \
+ TEST_CHECK_THROWS_OR((protocol) . command, ConnectionException, \
Protocol_UnexpectedReply, or_statements); \
TEST_PROTOCOL_ERROR_OR(protocol, error, or_statements)