From 2bd34816661a29b7cf8c21bd86210408ed658edb Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Wed, 26 May 2021 14:51:45 -0400 Subject: [PATCH] Googletest export Fix broken link PiperOrigin-RevId: 375995669 --- docs/primer.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/primer.md b/docs/primer.md index 0ba45384..dc718b41 100644 --- a/docs/primer.md +++ b/docs/primer.md @@ -119,9 +119,8 @@ this in mind if you get a heap checker error in addition to assertion errors. To provide a custom failure message, simply stream it into the macro using the `<<` operator or a sequence of such operators. See the following example, using -the -[`ASSERT_EQ` and `EXPECT_EQ`](reference/assertions.md?cl=374325853#EXPECT_EQ) -macros to verify value equality: +the [`ASSERT_EQ` and `EXPECT_EQ`](reference/assertions.md#EXPECT_EQ) macros to +verify value equality: ```c++ ASSERT_EQ(x.size(), y.size()) << "Vectors x and y are of unequal length";