Skip to content

Commit 95a5f19

Browse files
committed
Small fixes
1 parent 91bfce2 commit 95a5f19

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

offload/unittests/OffloadAPI/device/olGetDeviceInfo.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ TEST_P(olGetDeviceInfoTest, SuccessMaxWorkGroupSize) {
8181
ol_dimensions_t Value{0, 0, 0};
8282
ASSERT_SUCCESS(olGetDeviceInfo(Device, OL_DEVICE_INFO_MAX_WORK_GROUP_SIZE,
8383
sizeof(Value), &Value));
84-
ASSERT_GT(Value.x, 0);
85-
ASSERT_GT(Value.y, 0);
86-
ASSERT_GT(Value.z, 0);
84+
ASSERT_GT(Value.x, 0u);
85+
ASSERT_GT(Value.y, 0u);
86+
ASSERT_GT(Value.z, 0u);
8787
}
8888

8989
TEST_P(olGetDeviceInfoTest, InvalidNullHandleDevice) {

0 commit comments

Comments
 (0)