diff options
author | Copybara-Service <copybara-worker@google.com> | 2022-01-24 23:04:20 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-01-24 23:04:20 (GMT) |
commit | 7eae8de0da5774fa08ce350d9d470901b76b2834 (patch) | |
tree | c2f3b4ed4a21c7dd6bade23425a7838cc0efb93b /docs | |
parent | f64cf6b7b8328c6bafdb6352871793a459518ad3 (diff) | |
parent | 025621037608d528a43110696514002c1bfe86c9 (diff) | |
download | googletest-7eae8de0da5774fa08ce350d9d470901b76b2834.zip googletest-7eae8de0da5774fa08ce350d9d470901b76b2834.tar.gz googletest-7eae8de0da5774fa08ce350d9d470901b76b2834.tar.bz2 |
Merge pull request #3723 from ramkumar-kr:patch-1
PiperOrigin-RevId: 423920083
Change-Id: I5e172813387f841d5a6c56eea155b876a465d208
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); } |