diff options
| author | Riccardo Spagni <ric@spagni.net> | 2019-06-01 20:21:03 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2019-06-01 20:21:03 +0200 |
| commit | df20bcdac5af5d5a3e8313d539ee93bd3db88c50 (patch) | |
| tree | f590f2f358ae19a53f1599b36901adc2a6a342ea | |
| parent | fccfc1aa250d23f6693b51e585d26245a4434fed (diff) | |
| parent | dbecfe7d5ddb7cfa7271485d3b1d4c6cf349218f (diff) | |
| download | monzero-core-df20bcdac5af5d5a3e8313d539ee93bd3db88c50.tar.gz monzero-core-df20bcdac5af5d5a3e8313d539ee93bd3db88c50.tar.xz monzero-core-df20bcdac5af5d5a3e8313d539ee93bd3db88c50.zip | |
Merge pull request #5557
dbecfe7d unit_tests: make the density test a bit less stringent (moneromooo-monero)
| -rw-r--r-- | tests/unit_tests/output_selection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/output_selection.cpp b/tests/unit_tests/output_selection.cpp index 0094fc765..235b1c809 100644 --- a/tests/unit_tests/output_selection.cpp +++ b/tests/unit_tests/output_selection.cpp @@ -172,7 +172,7 @@ TEST(select_outputs, density) float chain_ratio = count_chain / (float)n_outs; MDEBUG(count_selected << "/" << NPICKS << " outputs selected in blocks of density " << d << ", " << 100.0f * selected_ratio << "%"); MDEBUG(count_chain << "/" << offsets.size() << " outputs in blocks of density " << d << ", " << 100.0f * chain_ratio << "%"); - ASSERT_LT(fabsf(selected_ratio - chain_ratio), 0.02f); + ASSERT_LT(fabsf(selected_ratio - chain_ratio), 0.025f); } } |
