testcase/0021_output_resolution.cpp:125: Failure
Expected equality of these values:
tw->h
Which is: 267
ratio_h * win_h
Which is: 266.
66666666666663
Change-Id: Ifb09a5bec41817514c7b4ccfa6d973ae8ffeca1d
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
{
if (tw->native_win == tw_red->native_win)
{
- ASSERT_EQ(tw->w, ratio_w * win_w);
- ASSERT_EQ(tw->h, ratio_h * win_h);
+ ASSERT_EQ(tw->w, round(ratio_w * win_w));
+ ASSERT_EQ(tw->h, round(ratio_h * win_h));
}
}
etRunner::get().freeWinInfoList(list);