We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dd8d01 commit 76b84feCopy full SHA for 76b84fe
1 file changed
extensions/couchbase/tests/PutCouchbaseKeyTests.cpp
@@ -82,7 +82,7 @@ class PutCouchbaseKeyTestController : public TestController {
82
83
auto upsert_parameters = mock_couchbase_cluster_service_->getUpsertParameters();
84
CHECK(upsert_parameters.document_type == expected_call_options.document_type);
85
- std::string expected_doc_id = expected_call_options.doc_id.empty() ? flow_file->getUUID().to_string() : expected_call_options.doc_id;
+ std::string expected_doc_id = expected_call_options.doc_id.empty() ? flow_file->getUUIDStr() : expected_call_options.doc_id;
86
CHECK(upsert_parameters.document_id == expected_doc_id);
87
CHECK(upsert_parameters.buffer == stringToByteVector(input));
88
0 commit comments