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 /payload_consumer/download_action_unittest.cc | |
parent | 49a08972bae293f4b5f8403d5e87c9d12b0329d9 (diff) |
Replace is_interactive with interactive for consistency in the code.
Bug: none
Test: unittests
Change-Id: I8c98860cfeadb52c7f8e4931d2ad154ae4211d47
Diffstat (limited to 'payload_consumer/download_action_unittest.cc')
-rw-r--r-- | payload_consumer/download_action_unittest.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/payload_consumer/download_action_unittest.cc b/payload_consumer/download_action_unittest.cc index daab9241..5dac5507 100644 --- a/payload_consumer/download_action_unittest.cc +++ b/payload_consumer/download_action_unittest.cc @@ -166,7 +166,7 @@ void TestWithData(const brillo::Blob& data, fake_system_state.hardware(), &fake_system_state, http_fetcher, - false /* is_interactive */); + false /* interactive */); download_action.SetTestFileWriter(&writer); BondActions(&feeder_action, &download_action); MockDownloadActionDelegate download_delegate; @@ -282,7 +282,7 @@ TEST(DownloadActionTest, MultiPayloadProgressTest) { fake_system_state.hardware(), &fake_system_state, http_fetcher, - false /* is_interactive */); + false /* interactive */); download_action.SetTestFileWriter(&mock_file_writer); BondActions(&feeder_action, &download_action); MockDownloadActionDelegate download_delegate; @@ -372,7 +372,7 @@ void TestTerminateEarly(bool use_download_delegate) { fake_system_state_.hardware(), &fake_system_state_, new MockHttpFetcher(data.data(), data.size(), nullptr), - false /* is_interactive */); + false /* interactive */); download_action.SetTestFileWriter(&writer); MockDownloadActionDelegate download_delegate; if (use_download_delegate) { @@ -474,7 +474,7 @@ TEST(DownloadActionTest, PassObjectOutTest) { fake_system_state_.hardware(), &fake_system_state_, new MockHttpFetcher("x", 1, nullptr), - false /* is_interactive */); + false /* interactive */); download_action.SetTestFileWriter(&writer); DownloadActionTestAction test_action; @@ -564,7 +564,7 @@ class P2PDownloadActionTest : public testing::Test { fake_system_state_.hardware(), &fake_system_state_, http_fetcher_, - false /* is_interactive */)); + false /* interactive */)); download_action_->SetTestFileWriter(&writer); BondActions(&feeder_action, download_action_.get()); DownloadActionTestProcessorDelegate delegate(ErrorCode::kSuccess); |