summaryrefslogtreecommitdiffstats
path: root/googletest/test
diff options
context:
space:
mode:
authordinord <dinor@google.com>2021-09-23 23:31:33 (GMT)
committerdinord <dinor@google.com>2021-09-23 23:31:33 (GMT)
commit09074c1571a348eb2ed7e2cf8bdb8ed1dd56915a (patch)
tree4ea4d62e0bcb6db4abe5d3eb300355da9b1cfde6 /googletest/test
parent319a9d19bc2dfa914c6a7e8994b4b3fee7babb7c (diff)
parent5b43f14be9d909770ca59825851af4b662bf2280 (diff)
downloadgoogletest-09074c1571a348eb2ed7e2cf8bdb8ed1dd56915a.zip
googletest-09074c1571a348eb2ed7e2cf8bdb8ed1dd56915a.tar.gz
googletest-09074c1571a348eb2ed7e2cf8bdb8ed1dd56915a.tar.bz2
Merge pull request #3573 from cclauss:patch-1
PiperOrigin-RevId: 397998384
Diffstat (limited to 'googletest/test')
-rw-r--r--googletest/test/gtest_pred_impl_unittest.cc10
-rw-r--r--googletest/test/gtest_unittest.cc2
2 files changed, 6 insertions, 6 deletions
diff --git a/googletest/test/gtest_pred_impl_unittest.cc b/googletest/test/gtest_pred_impl_unittest.cc
index de9e054..5eeb147 100644
--- a/googletest/test/gtest_pred_impl_unittest.cc
+++ b/googletest/test/gtest_pred_impl_unittest.cc
@@ -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.";
diff --git a/googletest/test/gtest_unittest.cc b/googletest/test/gtest_unittest.cc
index c0d2d99..c079f46 100644
--- a/googletest/test/gtest_unittest.cc
+++ b/googletest/test/gtest_unittest.cc
@@ -404,7 +404,7 @@ TEST(FormatTimeInMillisAsSecondsTest, FormatsNegativeNumber) {
// Tests FormatEpochTimeInMillisAsIso8601(). The correctness of conversion
// for particular dates below was verified in Python using
-// datetime.datetime.fromutctimestamp(<timetamp>/1000).
+// datetime.datetime.fromutctimestamp(<timestamp>/1000).
// FormatEpochTimeInMillisAsIso8601 depends on the current timezone, so we
// have to set up a particular timezone to obtain predictable results.