diff options
author | Ludger Paehler <ludger.paehler@tum.de> | 2021-11-25 15:53:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-25 15:53:19 (GMT) |
commit | b4d4e6e348014aec06655637390e23896e323704 (patch) | |
tree | f39bc32554fa63a578b3c4c6b06334a1b602b79c /docs | |
parent | e2f3978937c0244508135f126e2617a7734a68be (diff) | |
download | googletest-b4d4e6e348014aec06655637390e23896e323704.zip googletest-b4d4e6e348014aec06655637390e23896e323704.tar.gz googletest-b4d4e6e348014aec06655637390e23896e323704.tar.bz2 |
Fix typo in the queue test.refs/pull/3684/head
Diffstat (limited to 'docs')
-rw-r--r-- | docs/primer.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/primer.md b/docs/primer.md index aecc368..f6318a5 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); } |