diff options
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); |