mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-02 04:34:47 +01:00
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:
parent
97483928cc
commit
0b7c2ea698
1 changed files with 1 additions and 1 deletions
|
|
@ -302,7 +302,7 @@ TEST(MinidumpWriterTest, MinidumpStacksSkippedIfRequested) {
|
|||
++threads_with_stacks;
|
||||
}
|
||||
}
|
||||
ASSERT_EQUAL(1, threads_with_stacks);
|
||||
ASSERT_EQ(1, threads_with_stacks);
|
||||
close(fds[1]);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue