Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wapmorgan committed Jun 9, 2017
1 parent 2d1d9db commit b0a4d37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Russian/Plurality.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ static public function getCases($word, $animateness = false) {

if ($last == 'ч' || in_array(S::slice($word, -2), array('чь', 'сь')) || (self::isVowel($last) && in_array(S::slice($word, -2, -1), array('ч', 'к')))) // before ч, чь, сь, ч+vowel, к+vowel
$forms[Cases::IMENIT] = $prefix.'и';
else if ($last == 'н')
else if ($last == 'н' || $last == 'ц')
$forms[Cases::IMENIT] = $prefix.'ы';
else
$forms[Cases::IMENIT] = self::chooseVowelAfterConsonant($last, $soft_last, $prefix.'я', $prefix.'а');
Expand Down
2 changes: 2 additions & 0 deletions tests/Russian/PluralityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public function pluralWordsProvider() {
array('сообщение', false, array('сообщения', 'сообщений', 'сообщениям', 'сообщения', 'сообщениями', 'о сообщениях')),
array('копейка', false, array('копейки', 'копеек', 'копейкам', 'копейки', 'копейками', 'о копейках')),
array('батарейка', false, array('батарейки', 'батареек', 'батарейкам', 'батарейки', 'батарейками', 'о батарейках')),
array('письмо', false, array('письма', 'писем', 'письмам', 'письма', 'письмами', 'о письмах')),
array('песец', true, array('песцы', 'песцов', 'песцам', 'песцов', 'песцами', 'о песцах')),
);
}
}

0 comments on commit b0a4d37

Please sign in to comment.