From b4d4e6e348014aec06655637390e23896e323704 Mon Sep 17 00:00:00 2001 From: Ludger Paehler Date: Thu, 25 Nov 2021 16:53:19 +0100 Subject: [PATCH] Fix typo in the queue test. --- docs/primer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/primer.md b/docs/primer.md index aecc368b..f6318a5d 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 { - q1_.Enqueue(1); - q2_.Enqueue(2); + q0_.Enqueue(1); + q1_.Enqueue(2); q2_.Enqueue(3); }