0

One last (?) INSTANTIATE_TEST_CASE_P -> INSTANTIATE_TEST_SUITE_P

This one triggers in CrOS builds with deprecation warnings enabled.

Bug: 1091244,983223
Change-Id: Ia417573b04ac5804bfec244e5821639ada585a1c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4067179
Commit-Queue: danakj <danakj@chromium.org>
Auto-Submit: Nico Weber <thakis@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Owners-Override: Nico Weber <thakis@chromium.org>
Reviewed-by: danakj <danakj@chromium.org>
Owners-Override: danakj <danakj@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1077455}
This commit is contained in:
Nico Weber
2022-11-30 14:04:10 +00:00
committed by Chromium LUCI CQ
parent 1fb5a1f150
commit ee500b8ecf

@@ -191,12 +191,12 @@ TEST_P(It2MeConfirmationDialogChromeOSTest,
EXPECT_EQ(result_future.Get(), It2MeConfirmationDialog::Result::OK);
}
INSTANTIATE_TEST_CASE_P(EnterpriseDialog,
It2MeConfirmationDialogChromeOSTest,
testing::Values(DialogStyle::kEnterprise));
INSTANTIATE_TEST_SUITE_P(EnterpriseDialog,
It2MeConfirmationDialogChromeOSTest,
testing::Values(DialogStyle::kEnterprise));
INSTANTIATE_TEST_CASE_P(ConsumerDialog,
It2MeConfirmationDialogChromeOSTest,
testing::Values(DialogStyle::kConsumer));
INSTANTIATE_TEST_SUITE_P(ConsumerDialog,
It2MeConfirmationDialogChromeOSTest,
testing::Values(DialogStyle::kConsumer));
} // namespace remoting