Skip to content

Commit

Permalink
[nplb] Fix VerticalVideoTests error
Browse files Browse the repository at this point in the history
Changes param instantiation to TEST_SUITE_P to avoid an instantiation
error.

b/248859788

Change-Id: Ie5e5ef8841f670ac9661a6e26af3e60dd7d3aa88
  • Loading branch information
osagie98 committed Jun 27, 2023
1 parent 97f8e83 commit 45181de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions starboard/nplb/vertical_video_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@ std::vector<SbPlayerTestConfig> GetSupportedTestConfigs() {
return supported_configs;
}

INSTANTIATE_TEST_CASE_P(VerticalVideoTests,
VerticalVideoTest,
ValuesIn(GetSupportedTestConfigs()),
GetSbPlayerTestConfigName);
INSTANTIATE_TEST_SUITE_P(VerticalVideoTests,
VerticalVideoTest,
ValuesIn(GetSupportedTestConfigs()),
GetSbPlayerTestConfigName);

} // namespace
} // namespace nplb
Expand Down

0 comments on commit 45181de

Please sign in to comment.