Skip to content

Commit

Permalink
fix typos in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cieslarmichal committed Nov 12, 2023
1 parent 2ca2dc1 commit 1cdd20b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/person/PersonTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ TEST_P(PersonTest, shouldGenerateFullName)
const auto& femalesFirstNames = peopleNames.femalesNames.firstNames;

const auto& malesLastNames = peopleNames.malesNames.lastNames;
const auto& femalesLastNames = peopleNames.malesNames.lastNames;
const auto& femalesLastNames = peopleNames.femalesNames.lastNames;

std::vector<std::string> firstNames{malesFirstNames};
std::vector<std::string> lastNames{malesLastNames};
Expand Down Expand Up @@ -250,7 +250,7 @@ TEST_P(PersonTest, shouldGenerateFemaleFullName)

const auto& femalesFirstNames = peopleNames.femalesNames.firstNames;

const auto& femalesLastNames = peopleNames.malesNames.lastNames;
const auto& femalesLastNames = peopleNames.femalesNames.lastNames;

const auto generatedFullName = Person::fullName(language, Sex::Female);

Expand Down

0 comments on commit 1cdd20b

Please sign in to comment.