diff options
| author | chenzizhan <[email protected]> | 2023-11-13 17:54:02 +0800 |
|---|---|---|
| committer | chenzizhan <[email protected]> | 2023-11-13 17:54:02 +0800 |
| commit | 9e4ed742967ce78e062099656d6a819afc39e591 (patch) | |
| tree | ee1ee0d8d00dd5e3df8222be58bbaa587b77f595 | |
| parent | 7bd5bc38fde67fcd81b5c43d0af4d2830dd01b63 (diff) | |
fix ci
| -rw-r--r-- | test/test_easy_fs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_easy_fs.cpp b/test/test_easy_fs.cpp index e2b1620..10ca384 100644 --- a/test/test_easy_fs.cpp +++ b/test/test_easy_fs.cpp @@ -153,7 +153,7 @@ TEST(test_easy_fieldstat, output_interval_ok) stub.set(fs_easy_output_to_json, fs_easy_output_to_json_stub); struct fieldstat_easy *fse = fieldstat_easy_new(10, NULL, 0); - fieldstat_easy_register_histogram(fse, "metric histogram", 1, 1000000, 5); // a pretty time consuming metric + fieldstat_easy_register_histogram(fse, "metric histogram", 1, 100000, 3); // a pretty time consuming metric fieldstat_easy_histogram_record(fse, 0, 0, &TEST_TAG_INT, 1, 1); fieldstat_easy_histogram_record(fse, 0, 0, &TEST_TAG_DOUBLE, 1, 10); fieldstat_easy_histogram_record(fse, 0, 0, &TEST_TAG_STRING, 1, 110); |
