Skip to content

Commit

Permalink
fix(java): remove IAM special-casing in test_classes generation (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
miraleung committed Mar 19, 2021
1 parent 2caf944 commit bebd02b
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ class BazelBuildFileView {
.getOrDefault(bp.getProtoPackage() + "." + service, service)
// Default service name as it appears in the proto.
: service;
if (actualService.startsWith("IAM")) {
actualService = actualService.replaceAll("^IAM", "Iam");
}
javaTests.add(javaPackage + "." + actualService + "ClientTest");
}
tokens.put("java_tests", joinSetWithIndentation(javaTests));
Expand Down

0 comments on commit bebd02b

Please sign in to comment.