Skip to content

Commit a37f9d1

Browse files
committed
Fix unsigned long as unsigned unit test
1 parent a040fc3 commit a37f9d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unittest/valuetest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ TEST(Value, Uint) {
499499
RAPIDJSON_STATIC_ASSERT(sizeof(unsigned long) == sizeof(unsigned));
500500
z.SetUint(1234);
501501
EXPECT_TRUE(z.Is<unsigned long>());
502-
EXPECT_EQ(1234ul, z.Get<unsigned>());
502+
EXPECT_EQ(1234ul, z.Get<unsigned long>());
503503
#endif
504504
}
505505

0 commit comments

Comments
 (0)