Skip to content

Commit

Permalink
Fix test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lordgamez committed Oct 22, 2024
1 parent 9dd8d01 commit 76b84fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/couchbase/tests/PutCouchbaseKeyTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class PutCouchbaseKeyTestController : public TestController {

auto upsert_parameters = mock_couchbase_cluster_service_->getUpsertParameters();
CHECK(upsert_parameters.document_type == expected_call_options.document_type);
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;
CHECK(upsert_parameters.document_id == expected_doc_id);
CHECK(upsert_parameters.buffer == stringToByteVector(input));

Expand Down

0 comments on commit 76b84fe

Please sign in to comment.