summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2015-12-12 22:51:34 +0000
committerChris Wilson <chris+github@qwirx.com>2015-12-13 23:48:24 +0000
commitb0b213fe8f8527c5e818c5416751cfc83cbce53e (patch)
treea7604e57310a18fb716bef9c427ee68440b41cb0 /test
parent768f2bd2c35d56f0df65c4c9acfe5649e776409e (diff)
Fix invalid constant name, picked up by MSVC (and not by GCC or LLVM)
Diffstat (limited to 'test')
-rw-r--r--test/backupstore/testbackupstore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/backupstore/testbackupstore.cpp b/test/backupstore/testbackupstore.cpp
index c7cfee6f..00e16ad5 100644
--- a/test/backupstore/testbackupstore.cpp
+++ b/test/backupstore/testbackupstore.cpp
@@ -2601,7 +2601,7 @@ bool test_login_with_disabled_account()
// Login
TEST_COMMAND_RETURNS_ERROR(protocol, QueryLogin(0x01234567, 0),
- BackupProtocolError::Err_DisabledAccount);
+ Err_DisabledAccount);
// Finish the connection
protocol.QueryFinished();