Commit 19278ca1 authored by Xida Chen's avatar Xida Chen Committed by Commit Bot

Disable FeedbackTest.AnonymousUser on win

TBR=hbos@chromium.org
NOTRY=true

Bug: 1010031
Change-Id: I9ad685d4f58729f3ac6296e3aa7297c315261660
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1832987Reviewed-by: default avatarXida Chen <xidachen@chromium.org>
Commit-Queue: Xida Chen <xidachen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#701554}
parent 23f14102
......@@ -4,6 +4,7 @@
#include "base/bind.h"
#include "base/run_loop.h"
#include "build/build_config.h"
#include "chrome/browser/apps/platform_apps/app_browsertest_util.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/devtools/devtools_window_testing.h"
......@@ -140,7 +141,13 @@ IN_PROC_BROWSER_TEST_F(FeedbackTest, ShowLoginFeedback) {
// Tests that there's an option in the email drop down box with a value
// 'anonymous_user'.
IN_PROC_BROWSER_TEST_F(FeedbackTest, AnonymousUser) {
// crbug.com/1010031: fails on win
#if defined(OS_WIN)
#define MAYBE_AnonymousUser DISABLED_AnonymousUser
#else
#define MAYBE_AnonymousUser AnonymousUser
#endif
IN_PROC_BROWSER_TEST_F(FeedbackTest, MAYBE_AnonymousUser) {
WaitForExtensionViewsToLoad();
ASSERT_TRUE(IsFeedbackAppAvailable());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment