Fix Sequence test

This commit is contained in:
David Robillard 2016-12-03 15:49:13 -05:00
parent d17f58e531
commit 454df30ae5
2 changed files with 17 additions and 16 deletions

View file

@ -96,7 +96,7 @@ public:
virtual uint32_t write(Time time, EventType type, uint32_t size, const uint8_t* buf) {
if (type == cc_type) {
CPPUNIT_ASSERT(size == 3);
CPPUNIT_ASSERT_EQUAL((uint32_t)3, size);
events.push_back(std::make_pair(time, buf[2]));
}
return size;