aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorJordan Bayles <jophba@chromium.org>2020-12-16 15:04:54 -0800
committerCommit Bot <commit-bot@chromium.org>2020-12-17 00:15:09 +0000
commit4a33b7b19905753224349bc09e1b4adef115cb3c (patch)
tree1ce026311b91908369004415914632225e5a5010 /util
parent91beff4e632ae0348af1fd690710ea767c546805 (diff)
downloadopenscreen-4a33b7b19905753224349bc09e1b4adef115cb3c.tar.gz
Bikeshed: fix spelling mistakes
Change-Id: If9531c66df28cfd86728d7a5ece42753037c0509 Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/2596321 Commit-Queue: Jordan Bayles <jophba@chromium.org> Commit-Queue: mark a. foltz <mfoltz@chromium.org> Reviewed-by: mark a. foltz <mfoltz@chromium.org>
Diffstat (limited to 'util')
-rw-r--r--util/trace_logging/scoped_trace_operations_unittest.cc2
-rw-r--r--util/trace_logging_unittest.cc6
2 files changed, 4 insertions, 4 deletions
diff --git a/util/trace_logging/scoped_trace_operations_unittest.cc b/util/trace_logging/scoped_trace_operations_unittest.cc
index 46993042..469d26b8 100644
--- a/util/trace_logging/scoped_trace_operations_unittest.cc
+++ b/util/trace_logging/scoped_trace_operations_unittest.cc
@@ -95,7 +95,7 @@ TEST(TraceLoggingInternalTest, ValidateGettersValidOnEmptyStack) {
EXPECT_EQ(ids.root, kEmptyTraceId);
}
-TEST(TraceLoggingInternalTest, ValidateSetResultDoesntSegfaultOnEmptyStack) {
+TEST(TraceLoggingInternalTest, ValidateSetResultDoesNotSegfaultOnEmptyStack) {
Error error = Error::Code::kNone;
ScopedTraceOperation::set_result(error);
diff --git a/util/trace_logging_unittest.cc b/util/trace_logging_unittest.cc
index 386b19e6..cf82d652 100644
--- a/util/trace_logging_unittest.cc
+++ b/util/trace_logging_unittest.cc
@@ -34,7 +34,7 @@ using ::testing::Invoke;
// compiling with ENABLE_TRACE_LOGGING, the mock receives no method calls.
using StrictMockLoggingPlatform = ::testing::StrictMock<MockLoggingPlatform>;
-TEST(TraceLoggingTest, MacroCallScopedDoesntSegFault) {
+TEST(TraceLoggingTest, MacroCallScopedDoesNotSegFault) {
StrictMockLoggingPlatform platform;
#if defined(ENABLE_TRACE_LOGGING)
EXPECT_CALL(platform, IsTraceLoggingEnabled(TraceCategory::Value::kAny))
@@ -44,7 +44,7 @@ TEST(TraceLoggingTest, MacroCallScopedDoesntSegFault) {
{ TRACE_SCOPED(TraceCategory::Value::kAny, "test"); }
}
-TEST(TraceLoggingTest, MacroCallDefaultScopedDoesntSegFault) {
+TEST(TraceLoggingTest, MacroCallDefaultScopedDoesNotSegFault) {
StrictMockLoggingPlatform platform;
#if defined(ENABLE_TRACE_LOGGING)
EXPECT_CALL(platform, IsTraceLoggingEnabled(TraceCategory::Value::kAny))
@@ -54,7 +54,7 @@ TEST(TraceLoggingTest, MacroCallDefaultScopedDoesntSegFault) {
{ TRACE_DEFAULT_SCOPED(TraceCategory::Value::kAny); }
}
-TEST(TraceLoggingTest, MacroCallUnscopedDoesntSegFault) {
+TEST(TraceLoggingTest, MacroCallUnscopedDoesNotSegFault) {
StrictMockLoggingPlatform platform;
#if defined(ENABLE_TRACE_LOGGING)
EXPECT_CALL(platform, IsTraceLoggingEnabled(TraceCategory::Value::kAny))