comment out another test

This commit is contained in:
oxarbitrage 2018-03-23 17:32:01 -03:00 committed by GitHub
parent 6fae537fad
commit 377235a401
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,9 +22,9 @@ static void check_randomness( const char* buffer, size_t len ) {
double variance = (E - 1) * (E - 2) / (oc + zc - 1);
double sigma = sqrt(variance);
// Next test was removed as it will not pass:
// Next 2 test were removed as it will not always pass
//BOOST_CHECK_GT(rc, E - sigma);
BOOST_CHECK_LT(rc, E + sigma);
//BOOST_CHECK_LT(rc, E + sigma);
}
BOOST_AUTO_TEST_SUITE(fc_crypto)