Skip to content

Commit

Permalink
Fixed incorrect assert in issue320_test.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmumford committed Apr 1, 2019
1 parent 783fcff commit 9c8d57c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion issues/issue320_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ TEST(Issue320, Test) {
std::cout << " test_map[index]->first=" << test_map[index]->first
<< std::endl;
std::cout << " index=" << index << std::endl;
ASSERT_NE(old_value, test_map[index]->second);
ASSERT_EQ(old_value, test_map[index]->second);
}

if (num_items >= target_size && random(100) > 30) {
Expand Down

0 comments on commit 9c8d57c

Please sign in to comment.