Skip to content

Commit

Permalink
[tests] Fix after rename to buteosyncml
Browse files Browse the repository at this point in the history
Relates NEMO#664
  • Loading branch information
martyone committed May 22, 2013
1 parent 4a3a727 commit a04f5e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests_meego/SyncAgentTest.cpp
Expand Up @@ -68,7 +68,7 @@ void SyncAgentTest::releaseStorage( StoragePlugin* aStorage )
void SyncAgentTest::testSync()
{
createSyncAgent_t createSyncAgent = (createSyncAgent_t) QLibrary::resolve(
"libmeegosyncml.so", "createSyncAgent");
"libbuteosyncml.so", "createSyncAgent");
QVERIFY(NULL != createSyncAgent);
SyncAgent* agent = createSyncAgent(NULL);
QVERIFY(NULL != agent);
Expand Down Expand Up @@ -159,7 +159,7 @@ void SyncAgentTest::testSync()
QCOMPARE(agent->cleanUp(&config), false);

destroySyncAgent_t* destroySyncAgent =
(destroySyncAgent_t*) QLibrary::resolve("libmeegosyncml.so",
(destroySyncAgent_t*) QLibrary::resolve("libbuteosyncml.so",
"destroySyncAgent");
QVERIFY(NULL != destroySyncAgent);
destroySyncAgent(agent);
Expand Down

0 comments on commit a04f5e3

Please sign in to comment.