mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-22 23:33:36 +00: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…
Reference in a new issue