Skip to content

Commit 00f39a0

Browse files
committed
SERVER-4392 fix bug introduced in test
1 parent 4b05a87 commit 00f39a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mongo/dbtests/replsettests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ namespace ReplSetTests {
9898

9999
{
100100
mutex::scoped_lock lk2(OpTime::m);
101-
OpTime o1 = OpTime::now(lk2);
102-
OpTime o2 = OpTime::now(lk2);
101+
o1 = OpTime::now(lk2);
102+
o2 = OpTime::now(lk2);
103103
}
104104

105105
BSONObjBuilder b;

0 commit comments

Comments
 (0)