| Index: apps/app_window_browsertest.cc
|
| diff --git a/apps/app_window_browsertest.cc b/apps/app_window_browsertest.cc
|
| index cc411551ceb908cf440f5a0f220ffb49b677b6af..228e92c7b696433c65cf03fd984924d4268708a6 100644
|
| --- a/apps/app_window_browsertest.cc
|
| +++ b/apps/app_window_browsertest.cc
|
| @@ -20,7 +20,7 @@ typedef extensions::PlatformAppBrowserTest AppWindowBrowserTest;
|
| #endif
|
|
|
| // Verifies that the NativeAppWindows implement GetFrameInsets() correctly.
|
| -// See crbug.com/346115
|
| +// See http://crbug.com/346115
|
| IN_PROC_BROWSER_TEST_F(AppWindowBrowserTest, MAYBE_FrameInsetsForDefaultFrame) {
|
| AppWindow* app_window = CreateTestAppWindow("{}");
|
| NativeAppWindow* native_window = app_window->GetBaseWindow();
|
| @@ -28,7 +28,7 @@ IN_PROC_BROWSER_TEST_F(AppWindowBrowserTest, MAYBE_FrameInsetsForDefaultFrame) {
|
|
|
| // It is a reasonable assumption that the top padding must be greater than
|
| // the bottom padding due to the title bar.
|
| - EXPECT_TRUE(insets.top() > insets.bottom());
|
| + EXPECT_GT(insets.top(), insets.bottom());
|
|
|
| CloseAppWindow(app_window);
|
| }
|
| @@ -40,7 +40,7 @@ IN_PROC_BROWSER_TEST_F(AppWindowBrowserTest, MAYBE_FrameInsetsForDefaultFrame) {
|
| #endif
|
|
|
| // Verifies that the NativeAppWindows implement GetFrameInsets() correctly.
|
| -// See crbug.com/346115
|
| +// See http://crbug.com/346115
|
| IN_PROC_BROWSER_TEST_F(AppWindowBrowserTest, MAYBE_FrameInsetsForColoredFrame) {
|
| AppWindow* app_window =
|
| CreateTestAppWindow("{ \"frame\": { \"color\": \"#ffffff\" } }");
|
| @@ -49,7 +49,7 @@ IN_PROC_BROWSER_TEST_F(AppWindowBrowserTest, MAYBE_FrameInsetsForColoredFrame) {
|
|
|
| // It is a reasonable assumption that the top padding must be greater than
|
| // the bottom padding due to the title bar.
|
| - EXPECT_TRUE(insets.top() > insets.bottom());
|
| + EXPECT_GT(insets.top(), insets.bottom());
|
|
|
| CloseAppWindow(app_window);
|
| }
|
|
|