tests: Update tests for recent deck change

Signed-off-by: Anna Schumaker <schumaker.anna@gmail.com>
This commit is contained in:
Anna Schumaker 2014-01-30 22:54:15 -05:00 committed by Anna Schumaker
parent 6bd02bd46b
commit a74cd5e6d1
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ int main(int argc, char **argv)
library :: add_path("/tmp/library/0");
while (idle :: run_task());
pqueue = deck :: create();
pqueue = deck :: create(false);
for (unsigned int i = 0; i < 150; i++)
pqueue->add(i);

View File

@ -8,7 +8,7 @@
void test_add_playlist(unsigned int size)
{
Playqueue *pqueue = deck :: create();
Playqueue *pqueue = deck :: create(false);
for (unsigned i = 0; i < size; i++)
pqueue->add(i);
}