Skip to content

Commit 3eabec6

Browse files
committed
Fix
1 parent 0f47d2d commit 3eabec6

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
add_ydb_test(NAME bulk_upsert_simple_it
22
SOURCES
3-
main.cpp
4-
bulk_upsert.cpp
5-
bulk_upsert.h
3+
main.cpp
4+
bulk_upsert.cpp
5+
bulk_upsert.h
66
LINK_LIBRARIES
7-
yutil
8-
YDB-CPP-SDK::Table
9-
library-getopt
10-
GTest::gtest_main
7+
yutil
8+
YDB-CPP-SDK::Table
9+
getopt
10+
GTest::gtest_main
1111
LABELS
12-
integration
12+
integration
1313
)

tests/integration/bulk_upsert_simple_it/bulk_upsert.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include <ydb-cpp-sdk/client/driver/driver.h>
44
#include <ydb-cpp-sdk/client/table/table.h>
5-
#include <src/library/getopt/last_getopt.h>
5+
#include <library/cpp/getopt/last_getopt.h>
66

77
using namespace NYdb;
88
using namespace NYdb::NTable;

tests/integration/bulk_upsert_simple_it/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ TEST(Integration, BulkUpsert) {
1414
uint32_t count = 1000;
1515
TStatus statusCreate = CreateTable(client, path);
1616
if (!statusCreate.IsSuccess()) {
17-
FAIL() << "Create table failed with status: " << statusCreate << std::endl;
17+
FAIL() << "Create table failed with status: " << ToString(statusCreate) << std::endl;
1818
}
1919

2020
TRetryOperationSettings writeRetrySettings;
@@ -32,7 +32,7 @@ TEST(Integration, BulkUpsert) {
3232

3333
TStatus statusWrite = WriteLogBatch(client, path, logBatch, writeRetrySettings);
3434
if (!statusWrite.IsSuccess()) {
35-
FAIL() << "Write failed with status: " << statusWrite << std::endl;
35+
FAIL() << "Write failed with status: " << ToString(statusWrite) << std::endl;
3636
}
3737
}
3838

0 commit comments

Comments
 (0)