Commit 682890ae authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

inetmib1/tests: Compare instead of assign.

parent b27db86c
......@@ -364,7 +364,7 @@ static void testQuery(void)
* FIXME: don't know if IPv6 addrs are shared with this table.
* Don't think so, but I'm not certain.
*/
ok(vars2[0].name.idLength = vars[0].name.idLength + 4,
ok(vars2[0].name.idLength == vars[0].name.idLength + 4,
"expected length %d, got %d\n", vars[0].name.idLength + 4,
vars2[0].name.idLength);
/* Make sure the type is right */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment