| Index: base/mac/mac_util_unittest.mm
|
| diff --git a/base/mac/mac_util_unittest.mm b/base/mac/mac_util_unittest.mm
|
| index cf567c684cb520528d67ddfcebc34f73dc23b5c9..c8e8401413e0e4b4a234c659fa286361b9982def 100644
|
| --- a/base/mac/mac_util_unittest.mm
|
| +++ b/base/mac/mac_util_unittest.mm
|
| @@ -147,8 +147,6 @@ TEST_F(MacUtilTest, IsOSEllipsis) {
|
| if (major == 10) {
|
| if (minor == 9) {
|
| EXPECT_TRUE(IsOS10_9());
|
| - EXPECT_TRUE(IsAtMostOS10_9());
|
| - EXPECT_TRUE(IsAtLeastOS10_9());
|
| EXPECT_FALSE(IsOS10_10());
|
| EXPECT_TRUE(IsAtMostOS10_10());
|
| EXPECT_FALSE(IsAtLeastOS10_10());
|
| @@ -161,8 +159,6 @@ TEST_F(MacUtilTest, IsOSEllipsis) {
|
| EXPECT_FALSE(IsOSLaterThan10_12_DontCallThis());
|
| } else if (minor == 10) {
|
| EXPECT_FALSE(IsOS10_9());
|
| - EXPECT_FALSE(IsAtMostOS10_9());
|
| - EXPECT_TRUE(IsAtLeastOS10_9());
|
| EXPECT_TRUE(IsOS10_10());
|
| EXPECT_TRUE(IsAtMostOS10_10());
|
| EXPECT_TRUE(IsAtLeastOS10_10());
|
| @@ -175,8 +171,6 @@ TEST_F(MacUtilTest, IsOSEllipsis) {
|
| EXPECT_FALSE(IsOSLaterThan10_12_DontCallThis());
|
| } else if (minor == 11) {
|
| EXPECT_FALSE(IsOS10_9());
|
| - EXPECT_FALSE(IsAtMostOS10_9());
|
| - EXPECT_TRUE(IsAtLeastOS10_9());
|
| EXPECT_FALSE(IsOS10_10());
|
| EXPECT_FALSE(IsAtMostOS10_10());
|
| EXPECT_TRUE(IsAtLeastOS10_10());
|
| @@ -189,8 +183,6 @@ TEST_F(MacUtilTest, IsOSEllipsis) {
|
| EXPECT_FALSE(IsOSLaterThan10_12_DontCallThis());
|
| } else if (minor == 12) {
|
| EXPECT_FALSE(IsOS10_9());
|
| - EXPECT_FALSE(IsAtMostOS10_9());
|
| - EXPECT_TRUE(IsAtLeastOS10_9());
|
| EXPECT_FALSE(IsOS10_10());
|
| EXPECT_FALSE(IsAtMostOS10_10());
|
| EXPECT_TRUE(IsAtLeastOS10_10());
|
|
|