diff options
author | Amin Hassani <ahassani@google.com> | 2018-04-06 13:22:00 -0700 |
---|---|---|
committer | Amin Hassani <ahassani@google.com> | 2018-04-06 13:23:45 -0700 |
commit | ed37d6819b336ebb815233e896aa56f40755ab5c (patch) | |
tree | 2fdd57f0838e02cf90a7293826212faafe03fdf7 /update_manager/policy_test_utils.cc | |
parent | 49a08972bae293f4b5f8403d5e87c9d12b0329d9 (diff) |
Replace is_interactive with interactive for consistency in the code.
Bug: none
Test: unittests
Change-Id: I8c98860cfeadb52c7f8e4931d2ad154ae4211d47
Diffstat (limited to 'update_manager/policy_test_utils.cc')
-rw-r--r-- | update_manager/policy_test_utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update_manager/policy_test_utils.cc b/update_manager/policy_test_utils.cc index fbfcb820..d9a9857c 100644 --- a/update_manager/policy_test_utils.cc +++ b/update_manager/policy_test_utils.cc @@ -73,7 +73,7 @@ UpdateState UmPolicyTestBase::GetDefaultUpdateState( // This is a non-interactive check returning a delta payload, seen for the // first time (|first_seen_period| ago). Clearly, there were no failed // attempts so far. - update_state.is_interactive = false; + update_state.interactive = false; update_state.is_delta_payload = false; update_state.first_seen = first_seen_time; update_state.num_checks = 1; |