diff options
author | Abseil Team <absl-team@google.com> | 2022-01-27 11:43:45 -0800 |
---|---|---|
committer | dinord <dino.radakovich@gmail.com> | 2022-01-27 16:10:08 -0500 |
commit | a655ec4aff1cad3d4d076781ec302cdaaf97993f (patch) | |
tree | 2c89e483fa544c761ca9b932dddf611128e7ee9f /absl/random/zipf_distribution_test.cc | |
parent | d2da09a4cfada6997914da65d83aac0bb558155c (diff) |
Export of internal Abseil changes
--
dab53ef01a1c8ceebd1347a4918a0def0d7d4ce5 by Derek Mauro <dmauro@google.com>:
Migrate away from the remaining usages of GoogleTest's legacy TestCase API
and use the new TestSuite API instead
PiperOrigin-RevId: 424668744
GitOrigin-RevId: dab53ef01a1c8ceebd1347a4918a0def0d7d4ce5
Change-Id: I599de09f3349d18c2d74795b1f867fa6c99c3eed
Diffstat (limited to 'absl/random/zipf_distribution_test.cc')
-rw-r--r-- | absl/random/zipf_distribution_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/random/zipf_distribution_test.cc b/absl/random/zipf_distribution_test.cc index f8cf70e0..c8bb89db 100644 --- a/absl/random/zipf_distribution_test.cc +++ b/absl/random/zipf_distribution_test.cc @@ -44,7 +44,7 @@ class ZipfDistributionTypedTest : public ::testing::Test {}; using IntTypes = ::testing::Types<int, int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t>; -TYPED_TEST_CASE(ZipfDistributionTypedTest, IntTypes); +TYPED_TEST_SUITE(ZipfDistributionTypedTest, IntTypes); TYPED_TEST(ZipfDistributionTypedTest, SerializeTest) { using param_type = typename absl::zipf_distribution<TypeParam>::param_type; |