summaryrefslogtreecommitdiffstats
path: root/services/input/tests/InputReader_test.cpp
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2011-01-19 18:54:11 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-01-19 18:54:11 -0800
commit8b9df97826f94e2e871eff734b174a4752b0d5f9 (patch)
tree6a053cb549551238ed25b6ad9d3a1e1f812555c8 /services/input/tests/InputReader_test.cpp
parentaf3227ff772e8d5d577fd6fa10338837b435e99f (diff)
parent89de57a8d252a25ef2412a11a66089a9ff6ffe29 (diff)
downloadframeworks_base-8b9df97826f94e2e871eff734b174a4752b0d5f9.zip
frameworks_base-8b9df97826f94e2e871eff734b174a4752b0d5f9.tar.gz
frameworks_base-8b9df97826f94e2e871eff734b174a4752b0d5f9.tar.bz2
Merge "Fix getSwitchState." into honeycomb
Diffstat (limited to 'services/input/tests/InputReader_test.cpp')
-rw-r--r--services/input/tests/InputReader_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/input/tests/InputReader_test.cpp b/services/input/tests/InputReader_test.cpp
index 775747c..98d627d 100644
--- a/services/input/tests/InputReader_test.cpp
+++ b/services/input/tests/InputReader_test.cpp
@@ -1484,7 +1484,7 @@ TEST_F(SwitchInputMapperTest, GetSources) {
SwitchInputMapper* mapper = new SwitchInputMapper(mDevice);
addMapperAndConfigure(mapper);
- ASSERT_EQ(uint32_t(0), mapper->getSources());
+ ASSERT_EQ(uint32_t(AINPUT_SOURCE_SWITCH), mapper->getSources());
}
TEST_F(SwitchInputMapperTest, GetSwitchState) {