Update ports to avoid conflicts (#1318)

Quick fix for conflicting ports. Better solution will be in #1317.
This commit is contained in:
Sergey Kuznetsov
2024-04-03 12:52:00 +01:00
committed by GitHub
parent 332b66dc4f
commit 285dd008de

View File

@@ -44,9 +44,9 @@ struct GrpcSourceTests : NoLoggerFixture,
util::prometheus::WithPrometheus,
unittests::util::WithMockXrpLedgerAPIService {
GrpcSourceTests()
: WithMockXrpLedgerAPIService("localhost:50051")
: WithMockXrpLedgerAPIService("localhost:55051")
, mockBackend_(std::make_shared<testing::StrictMock<MockBackend>>(util::Config{}))
, grpcSource_("127.0.0.1", "50051", mockBackend_)
, grpcSource_("127.0.0.1", "55051", mockBackend_)
{
}