Skip to content

Commit

Permalink
Fix minor issue found during static code scan (#740)
Browse files Browse the repository at this point in the history
Fix issue of using uninitialized value on unit tests.
  • Loading branch information
DavidZagury authored Aug 14, 2023
1 parent be425ed commit dc5135d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/stringutility_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

TEST(STRINGUTILITY, cast_int)
{
int i;
int i = 0;

EXPECT_NO_THROW(swss::lexical_convert("123", i));
EXPECT_EQ(i, 123);
Expand Down Expand Up @@ -39,7 +39,7 @@ TEST(STRINGUTILITY, cast_alpha_bool)

TEST(STRINGUTILITY, cast_mix)
{
int i;
int i = 0;
swss::AlphaBoolean b;
std::string s;

Expand Down

0 comments on commit dc5135d

Please sign in to comment.