summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/codeigniter/helpers/inflector_helper_test.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/codeigniter/helpers/inflector_helper_test.php b/tests/codeigniter/helpers/inflector_helper_test.php
index e476f6dc8..472e28adb 100644
--- a/tests/codeigniter/helpers/inflector_helper_test.php
+++ b/tests/codeigniter/helpers/inflector_helper_test.php
@@ -11,7 +11,8 @@ class Inflector_helper_test extends CI_TestCase {
'tellies' => 'telly',
'smellies' => 'smelly',
'abjectnesses' => 'abjectness',
- 'smells' => 'smell'
+ 'smells' => 'smell',
+ 'equipment' => 'equipment'
);
foreach ($strs as $str => $expect)
@@ -29,7 +30,8 @@ class Inflector_helper_test extends CI_TestCase {
'smelly' => 'smellies',
'abjectness' => 'abjectnesses', // ref : http://en.wiktionary.org/wiki/abjectnesses
'smell' => 'smells',
- 'witch' => 'witches'
+ 'witch' => 'witches',
+ 'equipment' => 'equipment'
);
foreach ($strs as $str => $expect)