aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2019-06-01 20:21:03 +0200
committerRiccardo Spagni <ric@spagni.net>2019-06-01 20:21:03 +0200
commitdf20bcdac5af5d5a3e8313d539ee93bd3db88c50 (patch)
treef590f2f358ae19a53f1599b36901adc2a6a342ea
parentMerge pull request #5555 (diff)
parentunit_tests: make the density test a bit less stringent (diff)
downloadmonero-df20bcdac5af5d5a3e8313d539ee93bd3db88c50.tar.xz
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.cpp2
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);
}
}