Automatic code cleanup. PiperOrigin-RevId: 399912842
diff --git a/src/test/java/com/google/devtools/build/lib/bazel/rules/genrule/GenRuleConfiguredTargetTest.java b/src/test/java/com/google/devtools/build/lib/bazel/rules/genrule/GenRuleConfiguredTargetTest.java index 32bad8c..5bf71f0 100644 --- a/src/test/java/com/google/devtools/build/lib/bazel/rules/genrule/GenRuleConfiguredTargetTest.java +++ b/src/test/java/com/google/devtools/build/lib/bazel/rules/genrule/GenRuleConfiguredTargetTest.java
@@ -535,16 +535,16 @@ assertStamped(getConfiguredTarget(target)); } - private void assertNotStamped(String target) throws Exception { - assertNotStamped(getConfiguredTarget(target)); - } - private void assertStamped(ConfiguredTarget target) throws Exception { Artifact out = getFilesToBuild(target).toList().get(0); List<String> inputs = ActionsTestUtil.baseArtifactNames(getGeneratingAction(out).getInputs()); assertThat(inputs).containsAtLeast("build-info.txt", "build-changelist.txt"); } + private void assertNotStamped(String target) throws Exception { + assertNotStamped(getConfiguredTarget(target)); + } + private void assertNotStamped(ConfiguredTarget target) throws Exception { Artifact out = getFilesToBuild(target).toList().get(0); List<String> inputs = ActionsTestUtil.baseArtifactNames(getGeneratingAction(out).getInputs());