Fix ASSERT_EQUAL that should have been ASSERT_EQ.

BUG=703599

Change-Id: I5623705edc41644495aa4f2389056d255e22da8e
Reviewed-on: https://chromium-review.googlesource.com/459617
Reviewed-by: Primiano Tucci <primiano@chromium.org>
This commit is contained in:
Tobias Sargeant 2017-03-24 11:55:11 +00:00 committed by Tobias Sargeant
parent 97483928cc
commit 0b7c2ea698

View file

@ -302,7 +302,7 @@ TEST(MinidumpWriterTest, MinidumpStacksSkippedIfRequested) {
++threads_with_stacks; ++threads_with_stacks;
} }
} }
ASSERT_EQUAL(1, threads_with_stacks); ASSERT_EQ(1, threads_with_stacks);
close(fds[1]); close(fds[1]);
} }