rpcrt4: Fix test typo.

This commit is contained in:
Dan Hipschman 2007-05-24 17:47:22 -07:00 committed by Alexandre Julliard
parent 2360358944
commit b4e8073f8c
1 changed files with 2 additions and 2 deletions

View File

@ -279,8 +279,8 @@ union_tests(void)
sun.u.f = 5.0;
ok(square_sun(&sun) == 25.0, "RPC square_sun\n");
sun.s = SUN_I;
sun.u.i = -2.0;
sun.s = SUN_F2;
sun.u.f = -2.0;
ok(square_sun(&sun) == 4.0, "RPC square_sun\n");
}