summaryrefslogtreecommitdiff
path: root/tests/ec_sync_tests.c
diff options
context:
space:
mode:
authorJoel Kitching <kitching@google.com>2019-07-29 18:53:38 +0800
committerCommit Bot <commit-bot@chromium.org>2019-08-13 08:23:55 +0000
commit9908a9a305699bbca42d0fcff88008ebea522b66 (patch)
treed9fe6fdbb7c4a30990ec835500b49ff25dfe7729 /tests/ec_sync_tests.c
parentcf49e7b6ae5abee0552b596ec11b695b5d15853c (diff)
downloadvboot-9908a9a305699bbca42d0fcff88008ebea522b66.tar.gz
vboot: replace VBERROR_UNKNOWN with VB2_ERROR_UNKNOWN
Replace vboot1-style VBERROR_UNKNOWN with VB2_ERROR_UNKNOWN. BUG=b:124141368, chromium:988410 TEST=make clean && make runtests BRANCH=none Change-Id: Icd2158e328142cff69ce94b5396ab021a1f7839c Signed-off-by: Joel Kitching <kitching@google.com> Cq-Depend: chromium:1728115 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/1722916 Commit-Queue: Joel Kitching <kitching@chromium.org> Tested-by: Joel Kitching <kitching@chromium.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'tests/ec_sync_tests.c')
-rw-r--r--tests/ec_sync_tests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ec_sync_tests.c b/tests/ec_sync_tests.c
index ac4a4c52..7e5df6c3 100644
--- a/tests/ec_sync_tests.c
+++ b/tests/ec_sync_tests.c
@@ -495,8 +495,8 @@ static void VbSoftwareSyncTest(void)
ResetMocks();
ec_aux_fw_mock_severity = VB_AUX_FW_FAST_UPDATE;
- ec_aux_fw_retval = VBERROR_UNKNOWN;
- test_ssync(VBERROR_UNKNOWN, VB2_RECOVERY_AUX_FW_UPDATE,
+ ec_aux_fw_retval = VB2_ERROR_UNKNOWN;
+ test_ssync(VB2_ERROR_UNKNOWN, VB2_RECOVERY_AUX_FW_UPDATE,
"Error updating AUX firmware");
}