aboutsummaryrefslogtreecommitdiff
path: root/src/test/random_tests.cpp
diff options
context:
space:
mode:
authorBen Woosley <[email protected]>2020-02-27 15:20:31 -0800
committerBen Woosley <[email protected]>2020-05-08 11:18:43 -0700
commitdf37377e30678ac9b8338ea920e50b7296da6bd5 (patch)
tree71f19d59320fd191f990a9e1b449d60459e17550 /src/test/random_tests.cpp
parentMerge #16224: gui: Bilingual GUI error messages (diff)
downloaddiscoin-df37377e30678ac9b8338ea920e50b7296da6bd5.tar.xz
discoin-df37377e30678ac9b8338ea920e50b7296da6bd5.zip
test: Fix outstanding -Wsign-compare errors
Diffstat (limited to 'src/test/random_tests.cpp')
-rw-r--r--src/test/random_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/random_tests.cpp b/src/test/random_tests.cpp
index ca3b92f2e..d1f60e897 100644
--- a/src/test/random_tests.cpp
+++ b/src/test/random_tests.cpp
@@ -127,7 +127,7 @@ BOOST_AUTO_TEST_CASE(shuffle_stat_test)
}
BOOST_CHECK(chi_score > 58.1411); // 99.9999% confidence interval
BOOST_CHECK(chi_score < 210.275);
- BOOST_CHECK_EQUAL(sum, 12000);
+ BOOST_CHECK_EQUAL(sum, 12000U);
}
BOOST_AUTO_TEST_SUITE_END()