diff options
author | 2014-03-20 09:52:01 +0000 | |
---|---|---|
committer | 2014-03-20 09:52:02 +0000 | |
commit | 0c268b08b69e9f4f730dc145bb86522ca2964a52 (patch) | |
tree | e02ca2a5faf535c168f200eb8a00c3256ffea160 /tests/src | |
parent | d6517e7cf5bfa9d3f2c311924a3afb6e7f21b96f (diff) | |
parent | 6007a1b7a91437a211bf53dee248b78d95636bdb (diff) | |
download | latinime-0c268b08b69e9f4f730dc145bb86522ca2964a52.tar.gz latinime-0c268b08b69e9f4f730dc145bb86522ca2964a52.tar.xz latinime-0c268b08b69e9f4f730dc145bb86522ca2964a52.zip |
Merge "Refactor KeyboardTextsSet class"
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) { |