aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-03-20 09:52:01 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-03-20 09:52:02 +0000
commit0c268b08b69e9f4f730dc145bb86522ca2964a52 (patch)
treee02ca2a5faf535c168f200eb8a00c3256ffea160 /tests/src
parentd6517e7cf5bfa9d3f2c311924a3afb6e7f21b96f (diff)
parent6007a1b7a91437a211bf53dee248b78d95636bdb (diff)
downloadlatinime-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.java5
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) {