This commit is contained in:
Daniel Molkentin 2013-09-04 17:29:19 +02:00
Родитель 8fe102662d
Коммит 573aaec9fd
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -10,6 +10,7 @@
#include <QtTest>
#include "mirall/owncloudpropagator.h"
#include "mirall/progressdatabase.h"
using namespace Mirall;
@ -20,7 +21,7 @@ class TestOwncloudPropagator : public QObject
private slots:
void testUpdateErrorFromSession()
{
OwncloudPropagator propagator( NULL, QLatin1String("test1"), QLatin1String("test2"));
OwncloudPropagator propagator( NULL, QLatin1String("test1"), QLatin1String("test2"), new ProgressDatabase);
QVERIFY( true );
}
};