Fix propagator test

This commit is contained in:
Daniel Molkentin 2013-09-04 17:29:19 +02:00
parent 8fe102662d
commit 573aaec9fd

View file

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