diff options
| author | chenzizhan <[email protected]> | 2023-09-18 18:21:04 +0800 |
|---|---|---|
| committer | chenzizhan <[email protected]> | 2023-09-18 18:21:04 +0800 |
| commit | 54f0acdc824bdb9ca282d2d64f953c519539f975 (patch) | |
| tree | 762fc5d98bb8192d44e4a39784c706562dc8e9f9 /test/test_metric_histogram.cpp | |
| parent | 61196b6632112bc770d85da14aa6e28e4d408e5f (diff) | |
fix ci
Diffstat (limited to 'test/test_metric_histogram.cpp')
| -rw-r--r-- | test/test_metric_histogram.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_metric_histogram.cpp b/test/test_metric_histogram.cpp index 006a0ca..73d78b9 100644 --- a/test/test_metric_histogram.cpp +++ b/test/test_metric_histogram.cpp @@ -165,7 +165,7 @@ TEST(metric_test_histogram, add_with_wrong_metric_id_expecting_fail) } extern "C" { - bool is_hll(char *buf); + bool fieldstat_is_hll(char *buf); } TEST(metric_test_histogram, encode_decode_b64) @@ -180,7 +180,7 @@ TEST(metric_test_histogram, encode_decode_b64) size_t b64_len = 0; histogram_encode_into_b64(h, &b64, &b64_len); - EXPECT_FALSE(is_hll(b64)); + EXPECT_FALSE(fieldstat_is_hll(b64)); struct hdr_histogram *h2 = histogram_decode_from_b64(b64, b64_len); |
