OSDN Git Service

fix Java package name for calendar launch performance test
authorGuang Zhu <guangzhu@google.com>
Thu, 1 Apr 2010 23:32:42 +0000 (16:32 -0700)
committerGuang Zhu <guangzhu@google.com>
Thu, 1 Apr 2010 23:32:42 +0000 (16:32 -0700)
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

tests/AndroidManifest.xml
tests/src/com/android/calendar/CalendarLaunchPerformance.java

index 38dab34..7612dc2 100644 (file)
@@ -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>
index 975f6af..ef032f7 100644 (file)
@@ -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;