Skip to content

Commit

Permalink
Replace bsl::string with std to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsanabbas123 authored and willhoy committed Jul 17, 2024
1 parent 269a508 commit 43651ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tests/rmqio/rmqio_asioresolver.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ TEST_F(ResolverTests, badresolve)

TEST_F(ResolverTests, ShufflesResolverResults)
{
bsl::string host = "host";
bsl::string port = "port";
std::string host = "host";
std::string port = "port";
typedef boost::asio::ip::basic_resolver_entry<boost::asio::ip::tcp>
entry_type;

Expand Down Expand Up @@ -131,8 +131,8 @@ TEST_F(ResolverTests, ShufflesResolverResults)

TEST_F(ResolverTests, NoShuffleDoesNotReorderResolverResults)
{
bsl::string host = "host";
bsl::string port = "port";
std::string host = "host";
std::string port = "port";
typedef boost::asio::ip::basic_resolver_entry<boost::asio::ip::tcp>
entry_type;

Expand Down

0 comments on commit 43651ae

Please sign in to comment.