Commit fbffb170 authored by Tomasz Wiszkowski's avatar Tomasz Wiszkowski Committed by Commit Bot

Disable failing KeyPrefixTest cases.

TBR=hnakashima@chromium.org

Bug: 1028821
Change-Id: I8d5b9d9a92f9ae4bd5d587fa2b4bcb4ad3ddc960
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1938044Reviewed-by: default avatarEnder <ender@google.com>
Commit-Queue: Ender <ender@google.com>
Cr-Commit-Position: refs/heads/master@{#719464}
parent f174b5c9
......@@ -11,6 +11,7 @@ import android.support.test.filters.SmallTest;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.chromium.base.test.util.DisabledTest;
import org.chromium.chrome.test.ChromeJUnit4ClassRunner;
/**
......@@ -29,18 +30,21 @@ public class KeyPrefixTest {
}
@Test(expected = AssertionError.class)
@DisabledTest(message = "https://crbug.com/1028821")
@SmallTest
public void testError_missingPeriod() {
new KeyPrefix("Chrome.Feature.KP");
}
@Test(expected = AssertionError.class)
@DisabledTest(message = "https://crbug.com/1028821")
@SmallTest
public void testError_missingStar() {
new KeyPrefix("Chrome.Feature.KP.");
}
@Test(expected = AssertionError.class)
@DisabledTest(message = "https://crbug.com/1028821")
@SmallTest
public void testError_extraStar() {
new KeyPrefix("Chrome.Feature.KP.**");
......
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