Skip to content

Commit

Permalink
Fix conversion error in GitTest.cpp (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
capo-at-the-5th-fret authored Nov 20, 2023
1 parent bc8167d commit 402af8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/git/GitTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ std::string GitTest::generateShaRegex()
TEST_F(GitTest, shouldGenerateBranch)
{
const auto branch = Git::branch();
unsigned long branchSplit = faker::StringHelper::split(branch, "-").size();
const auto branchSplit = faker::StringHelper::split(branch, "-").size();

ASSERT_TRUE(2 <= branchSplit && branchSplit <= 7);
}
Expand Down

0 comments on commit 402af8f

Please sign in to comment.