| Index: ui/gfx/screen_unittest.cc
|
| diff --git a/ui/gfx/screen_unittest.cc b/ui/gfx/screen_unittest.cc
|
| index fe4c6ea477bfe2733425a92a4decd48a2532ffc8..d09f2db8a4a0ad12ab1e043bb3ea70491cf9883c 100644
|
| --- a/ui/gfx/screen_unittest.cc
|
| +++ b/ui/gfx/screen_unittest.cc
|
| @@ -8,16 +8,14 @@
|
|
|
| namespace {
|
|
|
| -typedef testing::Test ScreenTest;
|
| -
|
| -TEST_F(ScreenTest, GetPrimaryDisplaySize) {
|
| +TEST(ScreenTest, GetPrimaryDisplaySize) {
|
| // We aren't actually testing that it's correct, just that it's sane.
|
| const gfx::Size size = gfx::Screen::GetPrimaryDisplay().size();
|
| EXPECT_GE(size.width(), 1);
|
| EXPECT_GE(size.height(), 1);
|
| }
|
|
|
| -TEST_F(ScreenTest, GetNumDisplays) {
|
| +TEST(ScreenTest, GetNumDisplays) {
|
| // We aren't actually testing that it's correct, just that it's sane.
|
| EXPECT_GE(gfx::Screen::GetNumDisplays(), 1);
|
| }
|
|
|