| Index: blimp/engine/feature/geolocation/blimp_location_provider_unittest.cc
|
| diff --git a/blimp/engine/feature/geolocation/blimp_location_provider_unittest.cc b/blimp/engine/feature/geolocation/blimp_location_provider_unittest.cc
|
| index 1e944c6219695f68767316020fc583116f1a4bda..765d6eaa228dc3516bedb94666cf417db2bd3199 100644
|
| --- a/blimp/engine/feature/geolocation/blimp_location_provider_unittest.cc
|
| +++ b/blimp/engine/feature/geolocation/blimp_location_provider_unittest.cc
|
| @@ -106,21 +106,6 @@ TEST_F(BlimpLocationProviderTest, LocationProviderDeleted) {
|
| location_provider_.reset();
|
| }
|
|
|
| -TEST_F(BlimpLocationProviderTest, RequestRefreshRunsCorrectly) {
|
| - EXPECT_CALL(*delegate_, RequestRefresh()).Times(1);
|
| -
|
| - location_provider_->StartProvider(true);
|
| - location_provider_->RequestRefresh();
|
| -}
|
| -
|
| -TEST_F(BlimpLocationProviderTest, RequestRefreshHandlesNullDelegate) {
|
| - EXPECT_CALL(*delegate_, RequestRefresh()).Times(0);
|
| -
|
| - location_provider_->StartProvider(true);
|
| - delegate_.reset();
|
| - location_provider_->RequestRefresh();
|
| -}
|
| -
|
| TEST_F(BlimpLocationProviderTest, OnPermissionGrantedCallsRefresh) {
|
| EXPECT_CALL(*delegate_, RequestRefresh()).Times(1);
|
|
|
|
|