diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-02-10 06:12:16 +0000 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-02-10 06:12:16 +0000 |
commit | b2f20ff76649cab714c761e8a43f66e1976cf3d4 (patch) | |
tree | 5974be43528c46f8074e9390399fc92648eeb3fb /core/tests | |
parent | fc162362de2f155933baf3231a857faa9f6d46cc (diff) |
style fixes (style for method names, style for vars in locale.php)
Diffstat (limited to 'core/tests')
-rw-r--r-- | core/tests/I18n_Test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tests/I18n_Test.php b/core/tests/I18n_Test.php index 65b5e79a..4a353538 100644 --- a/core/tests/I18n_Test.php +++ b/core/tests/I18n_Test.php @@ -43,7 +43,7 @@ class I18n_Test extends Unit_Test_Case { foreach ($messages_te_ST as $data) { list ($message, $translation) = $data; $entry = ORM::factory("incoming_translation"); - $entry->key = I18n::getMessageKey($message); + $entry->key = I18n::get_message_key($message); $entry->message = serialize($message); $entry->translation = serialize($translation); $entry->locale = 'te_ST'; |