"git@developer.sourcefind.cn:yangql/googletest.git" did not exist on "1745a405eb7c70e0e4488023a4f2c69fd6faed4f"
Unverified Commit b4d4e6e3 authored by Ludger Paehler's avatar Ludger Paehler Committed by GitHub
Browse files

Fix typo in the queue test.

parent e2f39789
......@@ -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);
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment