From 025621037608d528a43110696514002c1bfe86c9 Mon Sep 17 00:00:00 2001 From: Ram Kumar K R <4789010+ramkumar-kr@users.noreply.github.com> Date: Tue, 4 Jan 2022 13:36:22 -0800 Subject: [PATCH] Update example to reflect the tests below --- docs/primer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/primer.md b/docs/primer.md index f6318a5d..aecc368b 100644 --- a/docs/primer.md +++ b/docs/primer.md @@ -274,8 +274,8 @@ First, define a fixture class. By convention, you should give it the name class QueueTest : public ::testing::Test { protected: void SetUp() override { - q0_.Enqueue(1); - q1_.Enqueue(2); + q1_.Enqueue(1); + q2_.Enqueue(2); q2_.Enqueue(3); }