Fix #162: Xiph and APE generic getters return space-concatenated values

This commit is contained in:
Michael Helmling
2014-04-03 21:07:29 +02:00
parent 16b8688c1a
commit 1723e9b18a
3 changed files with 12 additions and 12 deletions

View File

@ -52,7 +52,7 @@ public:
tag.setProperties(dict);
CPPUNIT_ASSERT_EQUAL(String("17"), tag.itemListMap()["TRACK"].values()[0]);
CPPUNIT_ASSERT_EQUAL(2u, tag.itemListMap()["ARTIST"].values().size());
CPPUNIT_ASSERT_EQUAL(String("artist 1"), tag.artist());
CPPUNIT_ASSERT_EQUAL(String("artist 1 artist 2"), tag.artist());
CPPUNIT_ASSERT_EQUAL(17u, tag.track());
}