Actually disable testDirtyActions and testDirtyActionsBatchStat.

PiperOrigin-RevId: 307477895
diff --git a/src/test/java/com/google/devtools/build/lib/skyframe/FilesystemValueCheckerTest.java b/src/test/java/com/google/devtools/build/lib/skyframe/FilesystemValueCheckerTest.java
index 35c49c1..362ec0c 100644
--- a/src/test/java/com/google/devtools/build/lib/skyframe/FilesystemValueCheckerTest.java
+++ b/src/test/java/com/google/devtools/build/lib/skyframe/FilesystemValueCheckerTest.java
@@ -93,6 +93,7 @@
 import java.util.concurrent.atomic.AtomicReference;
 import javax.annotation.Nullable;
 import org.junit.Before;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.junit.runners.JUnit4;
@@ -767,14 +768,16 @@
   }
 
   @Test
-  // TODO(b/154337187): Reenable once this test is de-flaked.
-  public void disabledTestDirtyActions() throws Exception {
+  // TODO(b/154337187): Remove the following annotation to re-enable once this test is de-flaked.
+  @Ignore
+  public void testDirtyActions() throws Exception {
     checkDirtyActions(null, false);
   }
 
   @Test
-  // TODO(b/154337187): Reenable once this test is de-flaked.
-  public void disabledTestDirtyActionsBatchStat() throws Exception {
+  // TODO(b/154337187): Remove the following annotation to re-enable once this test is de-flaked.
+  @Ignore
+  public void testDirtyActionsBatchStat() throws Exception {
     checkDirtyActions(
         new BatchStat() {
           @Override