Skip to content

Commit

Permalink
test: git module test fix (cieslarmichal#878)
Browse files Browse the repository at this point in the history
* modified word list in word store to remove '-' seperator between
words

Signed-off-by: Guru Mehar Rachaputi <[email protected]>
  • Loading branch information
00thirdeye00 authored Aug 30, 2024
1 parent 7f972bf commit 100b6c8
Show file tree
Hide file tree
Showing 2 changed files with 141 additions and 136 deletions.
11 changes: 8 additions & 3 deletions src/modules/person_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,14 @@ const auto bioSupporters =
std::to_array<std::string_view>({"Advocate", "Devotee", "Enthusiast", "Fan", "Junkie", "Lover", "Supporter"});

const auto bioFormats = std::to_array<std::string_view>(
{"{bio_part}", "{bio_part}, {bio_part}", "{bio_part}, {bio_part}, {bio_part}",
"{bio_part}, {bio_part}, {bio_part}, {emoji}", "{noun} {bio_supporter}", "{noun} {bio_supporter} {emoji}",
"{noun} {bio_supporter}, {bio_part}", "{noun} {bio_supporter}, {bio_part} {emoji}"});
{"{bio_part}",
"{bio_part}, {bio_part}",
"{bio_part}, {bio_part}, {bio_part}",
"{bio_part}, {bio_part}, {bio_part}, {emoji}",
"{noun} {bio_supporter}",
"{noun} {bio_supporter} {emoji}",
"{noun} {bio_supporter}, {bio_part}",
"{noun} {bio_supporter}, {bio_part} {emoji}"});

const auto genders = std::to_array<std::string_view>({
"Male",
Expand Down
Loading

0 comments on commit 100b6c8

Please sign in to comment.