Move Ignore annotation from class to method

Otherwise the expected test count is mismatched and
report as a tool failure.

Bug: 163813569
Test: ProtoLogIntegrationTest
Change-Id: Id19d70c728de6bd7c2c9b1473b78c036ab920d00
This commit is contained in:
Riddle Hsu
2020-08-13 21:58:26 +08:00
parent 832065165a
commit e01ea5351b

View File

@@ -38,13 +38,13 @@ import org.junit.Test;
*/
@SmallTest
@Presubmit
@Ignore("b/163095037")
public class ProtoLogIntegrationTest {
@After
public void tearDown() {
ProtoLogImpl.setSingleInstance(null);
}
@Ignore("b/163095037")
@Test
public void testProtoLogToolIntegration() {
ProtoLogImpl mockedProtoLog = mock(ProtoLogImpl.class);