diff --git a/java-network-management/owlbot.py b/java-network-management/owlbot.py index 7f701cc8b84e..d3b371ec0e33 100644 --- a/java-network-management/owlbot.py +++ b/java-network-management/owlbot.py @@ -17,7 +17,7 @@ v1_file_name = "owl-bot-staging/v1/google-cloud-network-management/src/test/java/com/google/cloud/networkmanagement/v1/ReachabilityServiceClientHttpJsonTest.java" v1beta1_file_name = "owl-bot-staging/v1beta1/google-cloud-network-management/src/test/java/com/google/cloud/networkmanagement/v1beta1/ReachabilityServiceClientHttpJsonTest.java" - +v1beta1_vpcflowlogs_file_name = "owl-bot-staging/v1beta1/google-cloud-network-management/src/test/java/com/google/cloud/networkmanagement/v1beta1/VpcFlowLogsServiceClientHttpJsonTest.java" for library in s.get_staging_dirs(): # put any special-case replacements here @@ -61,6 +61,26 @@ r'\s+@Test\n\s+public void testIamPermissionsTest\(\) throws Exception.*', '@Ignore("See: https://github.com/googleapis/sdk-platform-java/issues/1839")@Test\npublic void testIamPermissionsTest() throws Exception {' ) + s.replace( + v1beta1_vpcflowlogs_file_name, + r'^import org.junit.Test;', + 'import org.junit.Ignore;\nimport org.junit.Test;' + ) + s.replace( + v1beta1_vpcflowlogs_file_name, + r"\s+@Test\n\s+public void setIamPolicyTest\(\) throws Exception.*", + '@Ignore("See: https://github.com/googleapis/sdk-platform-java/issues/1839")\n@Test\npublic void setIamPolicyTest() throws Exception {' + ) + s.replace( + v1beta1_vpcflowlogs_file_name, + r'\s+@Test\n\s+public void getIamPolicyTest\(\) throws Exception.*', + '@Ignore("See: https://github.com/googleapis/sdk-platform-java/issues/1839")\n@Test\npublic void getIamPolicyTest() throws Exception {' + ) + s.replace( + v1beta1_vpcflowlogs_file_name, + r'\s+@Test\n\s+public void testIamPermissionsTest\(\) throws Exception.*', + '@Ignore("See: https://github.com/googleapis/sdk-platform-java/issues/1839")@Test\npublic void testIamPermissionsTest() throws Exception {' + ) s.move(library) s.remove_staging_dirs()