Skip to content

Commit 76b84fe

Browse files
committed
Fix test on Windows
1 parent 9dd8d01 commit 76b84fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/couchbase/tests/PutCouchbaseKeyTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class PutCouchbaseKeyTestController : public TestController {
8282

8383
auto upsert_parameters = mock_couchbase_cluster_service_->getUpsertParameters();
8484
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;
85+
std::string expected_doc_id = expected_call_options.doc_id.empty() ? flow_file->getUUIDStr() : expected_call_options.doc_id;
8686
CHECK(upsert_parameters.document_id == expected_doc_id);
8787
CHECK(upsert_parameters.buffer == stringToByteVector(input));
8888

0 commit comments

Comments
 (0)