Fix typo in the queue test.

This commit is contained in:
Ludger Paehler 2021-11-25 16:53:19 +01:00 committed by GitHub
parent e2f3978937
commit b4d4e6e348
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}