mirror of
https://github.com/google/googletest.git
synced 2025-04-06 22:15:01 +00:00
Fix typos discovered by codespell
This commit is contained in:
parent
a070f33c19
commit
861a75ed5d
1 changed files with 5 additions and 5 deletions
|
@ -136,7 +136,7 @@ class Predicate1Test : public testing::Test {
|
|||
|
||||
// Verifies that the control flow in the test function is expected.
|
||||
if (expected_to_finish_ && !finished_) {
|
||||
FAIL() << "The predicate assertion unexpactedly aborted the test.";
|
||||
FAIL() << "The predicate assertion unexpectedly aborted the test.";
|
||||
} else if (!expected_to_finish_ && finished_) {
|
||||
FAIL() << "The failed predicate assertion didn't abort the test "
|
||||
"as expected.";
|
||||
|
@ -530,7 +530,7 @@ class Predicate2Test : public testing::Test {
|
|||
|
||||
// Verifies that the control flow in the test function is expected.
|
||||
if (expected_to_finish_ && !finished_) {
|
||||
FAIL() << "The predicate assertion unexpactedly aborted the test.";
|
||||
FAIL() << "The predicate assertion unexpectedly aborted the test.";
|
||||
} else if (!expected_to_finish_ && finished_) {
|
||||
FAIL() << "The failed predicate assertion didn't abort the test "
|
||||
"as expected.";
|
||||
|
@ -966,7 +966,7 @@ class Predicate3Test : public testing::Test {
|
|||
|
||||
// Verifies that the control flow in the test function is expected.
|
||||
if (expected_to_finish_ && !finished_) {
|
||||
FAIL() << "The predicate assertion unexpactedly aborted the test.";
|
||||
FAIL() << "The predicate assertion unexpectedly aborted the test.";
|
||||
} else if (!expected_to_finish_ && finished_) {
|
||||
FAIL() << "The failed predicate assertion didn't abort the test "
|
||||
"as expected.";
|
||||
|
@ -1444,7 +1444,7 @@ class Predicate4Test : public testing::Test {
|
|||
|
||||
// Verifies that the control flow in the test function is expected.
|
||||
if (expected_to_finish_ && !finished_) {
|
||||
FAIL() << "The predicate assertion unexpactedly aborted the test.";
|
||||
FAIL() << "The predicate assertion unexpectedly aborted the test.";
|
||||
} else if (!expected_to_finish_ && finished_) {
|
||||
FAIL() << "The failed predicate assertion didn't abort the test "
|
||||
"as expected.";
|
||||
|
@ -1964,7 +1964,7 @@ class Predicate5Test : public testing::Test {
|
|||
|
||||
// Verifies that the control flow in the test function is expected.
|
||||
if (expected_to_finish_ && !finished_) {
|
||||
FAIL() << "The predicate assertion unexpactedly aborted the test.";
|
||||
FAIL() << "The predicate assertion unexpectedly aborted the test.";
|
||||
} else if (!expected_to_finish_ && finished_) {
|
||||
FAIL() << "The failed predicate assertion didn't abort the test "
|
||||
"as expected.";
|
||||
|
|
Loading…
Add table
Reference in a new issue