chore: fix spelling

This commit is contained in:
John Bampton
2021-04-15 11:53:53 +10:00
parent 8d664b94be
commit 050b517518
12 changed files with 16 additions and 16 deletions

View File

@@ -1029,7 +1029,7 @@ auto dynamic_test = (
"BadDynamicFixture1", "TestBase", nullptr, nullptr, __FILE__, __LINE__,
[]() -> testing::Test* { return new DynamicTest<true>; }),
// Register two tests with the same fixture incorrectly by ommiting the
// Register two tests with the same fixture incorrectly by omitting the
// return type.
testing::RegisterTest(
"BadDynamicFixture2", "FixtureBase", nullptr, nullptr, __FILE__,

View File

@@ -835,14 +835,14 @@ TEST(MacroNameing, LookupNames) {
}
}
// Check that the expected form of the test suit name actualy exists.
// Check that the expected form of the test suit name actually exists.
EXPECT_NE( //
know_suite_names.find("FortyTwo/MacroNamingTest"),
know_suite_names.end());
EXPECT_NE(
know_suite_names.find("MacroNamingTestNonParametrized"),
know_suite_names.end());
// Check that the expected form of the test name actualy exists.
// Check that the expected form of the test name actually exists.
EXPECT_NE( //
know_test_names.find("FortyTwo/MacroNamingTest.FooSomeTestName/0"),
know_test_names.end());

View File

@@ -201,7 +201,7 @@ OutputStream& operator<<(OutputStream& os,
return os;
}
// A user-defined streamable but recursivly-defined container type in
// A user-defined streamable but recursively-defined container type in
// a user namespace, it mimics therefore std::filesystem::path or
// boost::filesystem::path.
class PathLike {