summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/document_source_lookup_change_post_image_test.cpp
diff options
context:
space:
mode:
authorCharlie Swanson <charlie.swanson@mongodb.com>2018-04-09 14:12:05 -0400
committerCharlie Swanson <charlie.swanson@mongodb.com>2018-04-13 16:18:35 -0400
commita820491e9402a52d7575157a9897306d49129370 (patch)
tree61ed25fdec3912a8fc1407bcb52380b110b697fa /src/mongo/db/pipeline/document_source_lookup_change_post_image_test.cpp
parent4b894b4a55467c38bb7910317af00793b493de37 (diff)
downloadmongo-a820491e9402a52d7575157a9897306d49129370.tar.gz
SERVER-34313 Use hex-encoded string for resume token
Diffstat (limited to 'src/mongo/db/pipeline/document_source_lookup_change_post_image_test.cpp')
-rw-r--r--src/mongo/db/pipeline/document_source_lookup_change_post_image_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/pipeline/document_source_lookup_change_post_image_test.cpp b/src/mongo/db/pipeline/document_source_lookup_change_post_image_test.cpp
index b90ca65f594..15d236fd409 100644
--- a/src/mongo/db/pipeline/document_source_lookup_change_post_image_test.cpp
+++ b/src/mongo/db/pipeline/document_source_lookup_change_post_image_test.cpp
@@ -68,10 +68,10 @@ public:
if (id.missing()) {
ResumeTokenData tokenData;
tokenData.clusterTime = ts;
- return ResumeToken(tokenData).toDocument();
+ return ResumeToken(tokenData).toDocument(ResumeToken::SerializationFormat::kHexString);
}
return ResumeToken(ResumeTokenData(ts, Value(Document{{"_id", id}}), testUuid()))
- .toDocument();
+ .toDocument(ResumeToken::SerializationFormat::kHexString);
}
};