test: Actually verify that two equivalent touch points are the same

I typo'd when fixing this at Peter's request and left off the '2' from
the second variable name.

Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
Keith Packard 2016-05-29 18:43:00 -07:00
parent 1338bfa81c
commit 24e4c6db25
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ touch_find_ddxid(void)
ti = TouchFindByDDXID(&dev, 30, TRUE);
assert(ti != NULL);
ti2 = TouchFindByDDXID(&dev, 30, TRUE);
assert(ti == ti);
assert(ti == ti2);
/* make sure we have resized */
assert(dev.last.num_touches == 8); /* EQ grows from 5 to 8 */