Skip to content

Commit

Permalink
test/common/test_bloom_filter.cc: Fix a mismatch for the random_seed …
Browse files Browse the repository at this point in the history
…parameter

Signed-off-by: Willem Jan Withagen <[email protected]>
  • Loading branch information
wjwithagen committed Nov 3, 2016
1 parent d98a6ee commit c1e4b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/common/test_bloom_filter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ TEST(BloomFilter, SequenceDouble) {
#endif

TEST(BloomFilter, Assignement) {
bloom_filter bf1(10, .1, .1), bf2;
bloom_filter bf1(10, .1, 1), bf2;

bf1.insert("foo");
bf2 = bf1;
Expand Down

0 comments on commit c1e4b2e

Please sign in to comment.