Skip to content

Commit d260c1d

Browse files
committed
[APPHELP_APITEST] Fix broken test case
ROSTESTS-408
1 parent a6f38d1 commit d260c1d

File tree

1 file changed

+1
-1
lines changed
  • modules/rostests/apitests/apphelp

1 file changed

+1
-1
lines changed

modules/rostests/apitests/apphelp/db.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1816,7 +1816,7 @@ static void test_DataTags(HSDB hsdb)
18161816
ok_hex(dwRet, ERROR_SUCCESS);
18171817
ok_hex(dwDataType, REG_QWORD);
18181818
ok_hex(dwBufferSize, sizeof(QWORD));
1819-
ok(*(QWORD*)Buffer == 4294967295ull, "unexpected value 0x%I64x, expected 4294967295\n", *(QWORD*)Buffer);
1819+
ok(*(QWORD*)Buffer == 0x123456789ull, "unexpected value 0x%I64x, expected 0x123456789\n", *(QWORD*)Buffer);
18201820
ok(tiData != NULL && tiData != 0x111111, "Expected tiData, got NULL\n");
18211821
ok_hex(pSdbGetTagFromTagID(pdb, tiData), TAG_DATA);
18221822

0 commit comments

Comments
 (0)