Skip to content

Commit c81550e

Browse files
committed
Attempt to fix windows issue
1 parent ffa8095 commit c81550e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_package/mqtt_adapter_test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ TEST_F(MqttAdapterTest, should_change_if_host_changes)
164164
ASSERT_EQ("mqtt://mybroker.com:1883/", adapter->getName());
165165
ASSERT_EQ("_89c11f795e", adapter->getIdentity());
166166

167-
options[configuration::Host] = "localhost";
167+
options[configuration::Host] = "localhost"s;
168168
adapter = make_unique<MqttAdapter>(ioc, context, options, tree);
169169

170170
ASSERT_EQ("mqtt://localhost:1883/", adapter->getName());

0 commit comments

Comments
 (0)