]> git-server-git.apps.pok.os.sepia.ceph.com Git - googletest.git/commitdiff
Googletest export
authorAbseil Team <absl-team@google.com>
Thu, 10 Jun 2021 16:52:12 +0000 (09:52 -0700)
committerDino Radaković <dinor@google.com>
Fri, 11 Jun 2021 17:42:17 +0000 (10:42 -0700)
Internal change

PiperOrigin-RevId: 378672633

docs/primer.md

index dc718b41c4c2d759c87c093f43bf4a3d779e48ac..6d8fdf443923cacc83425cf45d5102d9889f6241 100644 (file)
@@ -319,7 +319,7 @@ The above uses both `ASSERT_*` and `EXPECT_*` assertions. The rule of thumb is
 to use `EXPECT_*` when you want the test to continue to reveal more errors after
 the assertion failure, and use `ASSERT_*` when continuing after failure doesn't
 make sense. For example, the second assertion in the `Dequeue` test is
-`ASSERT_NE(nullptr, n)`, as we need to dereference the pointer `n` later, which
+`ASSERT_NE(n, nullptr)`, as we need to dereference the pointer `n` later, which
 would lead to a segfault when `n` is `NULL`.
 
 When these tests run, the following happens: