summaryrefslogtreecommitdiff
path: root/dbtests/pairingtests.cpp
diff options
context:
space:
mode:
authorDwight <dmerriman@gmail.com>2009-02-09 15:38:26 -0500
committerDwight <dmerriman@gmail.com>2009-02-09 15:38:26 -0500
commit8cb17548c27a6599641fb7319f838e1f489745a2 (patch)
treedbd07475958c450d5fa20ab5c652fc01c2a298ec /dbtests/pairingtests.cpp
parent147948c7b33d4542a99352dd02ec3cb88f401a7c (diff)
downloadmongo-8cb17548c27a6599641fb7319f838e1f489745a2.tar.gz
bsonobjbuilder cleanup
Diffstat (limited to 'dbtests/pairingtests.cpp')
-rw-r--r--dbtests/pairingtests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbtests/pairingtests.cpp b/dbtests/pairingtests.cpp
index 27d92a9b932..b19ed8ec98e 100644
--- a/dbtests/pairingtests.cpp
+++ b/dbtests/pairingtests.cpp
@@ -175,8 +175,8 @@ namespace PairingTests {
private:
BSONObj res( int ok, int youAre ) {
BSONObjBuilder b;
- b.appendInt( "ok", ok );
- b.appendInt( "you_are", youAre );
+ b.append( "ok", ok );
+ b.append( "you_are", youAre );
return b.obj();
}
};