summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuang Zhu <guangzhu@google.com>2010-04-01 16:32:42 -0700
committerGuang Zhu <guangzhu@google.com>2010-04-01 16:32:42 -0700
commitaadd4bf8efd9144d7df125a11f9828f70478f704 (patch)
tree9e587a7a836ba6b157a0a97e4884933bbe6f50da
parent10b4b67d45c1e706b3323c1dacf390f783e6bc9f (diff)
downloadCalendar-aadd4bf8efd9144d7df125a11f9828f70478f704.tar.gz
fix Java package name for calendar launch performance test
the package name cited in the test class does not agree with the actual path leading to the .java file. while this has not been a problem for our build system, it confuses IDEs and also package rename mechanism in the build system Change-Id: I5754b99a4ccf58530daf2ae2f40cac7b35c9aed5
-rw-r--r--tests/AndroidManifest.xml2
-rw-r--r--tests/src/com/android/calendar/CalendarLaunchPerformance.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/AndroidManifest.xml b/tests/AndroidManifest.xml
index 38dab346..7612dc2c 100644
--- a/tests/AndroidManifest.xml
+++ b/tests/AndroidManifest.xml
@@ -33,7 +33,7 @@
android:targetPackage="com.android.calendar"
android:label="calendar tests"/>
- <instrumentation android:name="CalendarLaunchPerformance"
+ <instrumentation android:name="com.android.calendar.CalendarLaunchPerformance"
android:targetPackage="com.android.calendar"
android:label="Calendar Launch Performance">
</instrumentation>
diff --git a/tests/src/com/android/calendar/CalendarLaunchPerformance.java b/tests/src/com/android/calendar/CalendarLaunchPerformance.java
index 975f6aff..ef032f75 100644
--- a/tests/src/com/android/calendar/CalendarLaunchPerformance.java
+++ b/tests/src/com/android/calendar/CalendarLaunchPerformance.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-package com.android.calendar.tests;
+package com.android.calendar;
import android.app.Activity;
import android.test.LaunchPerformanceBase;