summaryrefslogtreecommitdiffstats
path: root/core/tests
diff options
context:
space:
mode:
authorJeff Davidson <jpd@google.com>2014-05-15 15:52:04 -0700
committerJeff Davidson <jpd@google.com>2014-05-15 15:53:17 -0700
commit7672ef046b40cc5a56fd36f152f848654c55a096 (patch)
tree00a517d87f173c85dc52b5e6aa0e8a4bfd3c03ee /core/tests
parentc5d0cd895b55e994d095546afaadfba0917f4cdd (diff)
downloadframeworks_base-7672ef046b40cc5a56fd36f152f848654c55a096.zip
frameworks_base-7672ef046b40cc5a56fd36f152f848654c55a096.tar.gz
frameworks_base-7672ef046b40cc5a56fd36f152f848654c55a096.tar.bz2
Fix inconsistent package name.
Change-Id: I6dfa0ded4309ae9e3f8ab73d96e6ccb521beb7c4
Diffstat (limited to 'core/tests')
-rw-r--r--core/tests/coretests/src/android/view/VelocityTest.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/tests/coretests/src/android/view/VelocityTest.java b/core/tests/coretests/src/android/view/VelocityTest.java
index fb28e1e..12abf3e 100644
--- a/core/tests/coretests/src/android/view/VelocityTest.java
+++ b/core/tests/coretests/src/android/view/VelocityTest.java
@@ -14,14 +14,12 @@
* limitations under the License.
*/
-package com.android.frameworktest.view;
+package android.view;
import junit.framework.Assert;
import android.test.InstrumentationTestCase;
import android.test.suitebuilder.annotation.MediumTest;
-import android.view.MotionEvent;
-import android.view.VelocityTracker;
import android.view.animation.AccelerateInterpolator;
import android.view.animation.DecelerateInterpolator;
import android.view.animation.Interpolator;
@@ -30,7 +28,7 @@ import android.view.animation.LinearInterpolator;
/**
* Exercises {@link android.view.VelocityTracker} to compute correct velocity.<br>
* To launch this test, use :<br>
- * <code>./development/testrunner/runtest.py framework -c com.android.frameworktest.view.VelocityTest</code>
+ * <code>./development/testrunner/runtest.py framework -c android.view.VelocityTest</code>
*/
public class VelocityTest extends InstrumentationTestCase {