diff options
author | 2014-03-20 16:23:45 +0900 | |
---|---|---|
committer | 2014-03-20 18:38:59 +0900 | |
commit | 6007a1b7a91437a211bf53dee248b78d95636bdb (patch) | |
tree | adbbe2101360494f135cf8f4cd9c106797d16652 /tests/src | |
parent | 44f144ab3ae6824a64d309add591cfc469451480 (diff) | |
download | latinime-6007a1b7a91437a211bf53dee248b78d95636bdb.tar.gz latinime-6007a1b7a91437a211bf53dee248b78d95636bdb.tar.xz latinime-6007a1b7a91437a211bf53dee248b78d95636bdb.zip |
Refactor KeyboardTextsSet class
Change-Id: Ibb59a9d4902db9ec0e00244304be9ab35b215a50
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/com/android/inputmethod/keyboard/internal/MoreKeySpecSplitTests.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/src/com/android/inputmethod/keyboard/internal/MoreKeySpecSplitTests.java b/tests/src/com/android/inputmethod/keyboard/internal/MoreKeySpecSplitTests.java index 42a94f420..d01c2ec79 100644 --- a/tests/src/com/android/inputmethod/keyboard/internal/MoreKeySpecSplitTests.java +++ b/tests/src/com/android/inputmethod/keyboard/internal/MoreKeySpecSplitTests.java @@ -51,10 +51,13 @@ public class MoreKeySpecSplitTests extends InstrumentationTestCase { }.runInLocale(targetContext.getResources(), TEST_LOCALE); final String[] testResourceNames = getAllResourceIdNames( com.android.inputmethod.latin.tests.R.string.class); - mTextsSet.loadStringResourcesInternal(instrumentation.getContext(), testResourceNames, + final Context testContext = instrumentation.getContext(); + final Resources testRes = testContext.getResources(); + final String testResPackageName = testRes.getResourcePackageName( // This dummy raw resource is needed to be able to load string resources from a test // APK successfully. com.android.inputmethod.latin.tests.R.raw.dummy_resource_for_testing); + mTextsSet.loadStringResourcesInternal(testRes, testResourceNames, testResPackageName); } private static String[] getAllResourceIdNames(final Class<?> resourceIdClass) { |