Skip to content

Commit

Permalink
Use always-available transport for config test
Browse files Browse the repository at this point in the history
  • Loading branch information
rbx authored and dennisklein committed Aug 27, 2018
1 parent 5303e91 commit 5d37ab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/device/_device_config.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ class DeviceConfig : public ::testing::Test

TEST_F(DeviceConfig, SetConfig)
{
string transport = "nanomsg";
string transport = "zeromq";
string returnedTransport = TestDeviceSetConfig(transport);

EXPECT_EQ(transport, returnedTransport);
}

TEST_F(DeviceConfig, SetTransport)
{
string transport = "nanomsg";
string transport = "zeromq";
string returnedTransport = TestDeviceSetTransport(transport);

EXPECT_EQ(transport, returnedTransport);
Expand Down

0 comments on commit 5d37ab2

Please sign in to comment.