Skip to content

Commit 3456bd3

Browse files
A Googlercopybara-github
authored andcommitted
Internal change
PiperOrigin-RevId: 700326169 Change-Id: Ic834714f24efa2ed3ee4dfba2c2ee27823de0e2b
1 parent 94f63aa commit 3456bd3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

mobile_install/utils.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ load("//rules:min_sdk_version.bzl", _min_sdk_version = "min_sdk_version")
1717
load("//rules:visibility.bzl", "PROJECT_VISIBILITY")
1818
load("//rules/flags:flags.bzl", "flags")
1919
load("@rules_java//java/common:java_common.bzl", "java_common")
20+
# Copybara: placeholder for GeneratedExtensionRegistryInfo load
2021
load(":constants.bzl", "constants")
2122

2223
visibility(PROJECT_VISIBILITY)

test/utils/asserts.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ def _assert_output_group_info(expected, actual):
555555

556556
def _assert_generated_extension_registry_provider(expected, actual):
557557
if expected and not actual:
558-
fail("GeneratedExtensionRegistryProvider was expected but not found!")
558+
fail("GeneratedExtensionRegistryInfo was expected but not found!")
559559
for key in expected:
560560
actual_attr = getattr(actual, key, None)
561561
if actual_attr == None: # both empty depset and list will fail.
@@ -564,7 +564,7 @@ def _assert_generated_extension_registry_provider(expected, actual):
564564
_assert_files(
565565
expected[key],
566566
[actual_attr] if type(actual_attr) != "depset" else actual_attr.to_list(),
567-
"GeneratedExtensionRegistryProvider." + key,
567+
"GeneratedExtensionRegistryInfo." + key,
568568
)
569569

570570
def _assert_android_idl_info(expected, actual, label_under_test):

0 commit comments

Comments
 (0)