mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Fix type mismatch errors in test_apetag.cpp.
This commit is contained in:
parent
57e849b0d5
commit
33c0ece830
@ -98,10 +98,10 @@ public:
|
||||
CPPUNIT_ASSERT(unsuccessful.contains("A"));
|
||||
CPPUNIT_ASSERT(unsuccessful.contains("MP+"));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL((unsigned int)2, tag.itemListMap().size());
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)2, tag.itemListMap().size());
|
||||
tag.addValue("VALID KEY", "Test Value 1");
|
||||
tag.addValue("INVALID KEY \x7f", "Test Value 2");
|
||||
CPPUNIT_ASSERT_EQUAL((unsigned int)3, tag.itemListMap().size());
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)3, tag.itemListMap().size());
|
||||
}
|
||||
|
||||
void testTextBinary()
|
||||
|
Loading…
x
Reference in New Issue
Block a user