| Index: chrome/browser/local_discovery/privet_local_printer_lister_unittest.cc
|
| diff --git a/chrome/browser/local_discovery/privet_local_printer_lister_unittest.cc b/chrome/browser/local_discovery/privet_local_printer_lister_unittest.cc
|
| index 0742c6dc2baab04776753c1014827afed9883fb8..6ec8b1ad9d7d563e16dad9a68aa79915aae192e4 100644
|
| --- a/chrome/browser/local_discovery/privet_local_printer_lister_unittest.cc
|
| +++ b/chrome/browser/local_discovery/privet_local_printer_lister_unittest.cc
|
| @@ -12,6 +12,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| using testing::StrictMock;
|
| +using testing::AtLeast;
|
| using testing::_;
|
|
|
| namespace local_discovery {
|
| @@ -140,8 +141,7 @@ class PrivetLocalPrinterListerTest : public testing::Test {
|
| }
|
|
|
| void ExpectAnyPacket() {
|
| - EXPECT_CALL(*test_service_discovery_client_, OnSendTo(_))
|
| - .Times(2);
|
| + EXPECT_CALL(*test_service_discovery_client_, OnSendTo(_)).Times(AtLeast(2));
|
| }
|
|
|
| protected:
|
|
|