diff options
author | Ram Kumar K R <4789010+ramkumar-kr@users.noreply.github.com> | 2022-01-04 21:36:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 21:36:22 (GMT) |
commit | 025621037608d528a43110696514002c1bfe86c9 (patch) | |
tree | 79dd6c01041fcd2c99d529e09d9df0bce84b183d /docs | |
parent | 6b74da4757a549563d7c37c8fae3e704662a043b (diff) | |
download | googletest-025621037608d528a43110696514002c1bfe86c9.zip googletest-025621037608d528a43110696514002c1bfe86c9.tar.gz googletest-025621037608d528a43110696514002c1bfe86c9.tar.bz2 |
Update example to reflect the tests belowrefs/pull/3723/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 f6318a5..aecc368 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); } |