Skip to content

Commit

Permalink
Fixing unit test failure for invalid param
Browse files Browse the repository at this point in the history
  • Loading branch information
parag-pv committed Sep 19, 2024
1 parent 3fff494 commit 8afec81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ TEST_F(CapabilitiesTest, Supported)
nlohmann::json_abi_v3_11_3::json expectedValues = nlohmann::json::parse(jsonEngine->get_value("Capabilities.supported"));


bool supported = Firebolt::IFireboltAccessor::Instance().CapabilitiesInterface().supported("example", &error);
bool supported = Firebolt::IFireboltAccessor::Instance().CapabilitiesInterface().supported("xrn:firebolt:capability:wifi:scan", &error);

EXPECT_EQ(error, Firebolt::Error::None);
EXPECT_EQ(supported, expectedValues);
Expand Down

0 comments on commit 8afec81

Please sign in to comment.