summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@theqtcompany.com>2015-05-07 18:12:32 +0200
committerNikolai Kosjar <nikolai.kosjar@theqtcompany.com>2015-05-08 08:26:53 +0000
commit5b036bf32bdd3517bd6935f102afb37d2b252835 (patch)
tree7282cd0a786e30e6aa3e6beb78a87b62dd669338
parent9fe99751748e18634baf5e3c172ce6ada2884fb5 (diff)
downloadqt-creator-5b036bf32bdd3517bd6935f102afb37d2b252835.tar.gz
Compile fix
Change-Id: Ib574f7041f3d2b401f431a26d99eca6eecf984f0 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-rw-r--r--tests/unit/codemodelbackend/unittest/clangipcservertest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/codemodelbackend/unittest/clangipcservertest.cpp b/tests/unit/codemodelbackend/unittest/clangipcservertest.cpp
index b2cd536891..ae2af9c2ba 100644
--- a/tests/unit/codemodelbackend/unittest/clangipcservertest.cpp
+++ b/tests/unit/codemodelbackend/unittest/clangipcservertest.cpp
@@ -300,7 +300,7 @@ TEST_F(ClangIpcServer, UnregisterTranslationUnitAndTestFailingCompletion)
TEST_F(ClangIpcServer, GetProjectDoesNotExistUnregisterProjectInexistingProject)
{
Utf8StringVector inexistingProjectFilePath = {Utf8StringLiteral("projectdoesnotexists.pro"), Utf8StringLiteral("project2doesnotexists.pro")};
- UnregisterProjectsForCodeCompletionCommand unregisterProjectsForCodeCompletionCommand({inexistingProjectFilePath});
+ UnregisterProjectsForCodeCompletionCommand unregisterProjectsForCodeCompletionCommand(inexistingProjectFilePath);
ProjectDoesNotExistCommand projectDoesNotExistCommand(inexistingProjectFilePath);
EXPECT_CALL(mockIpcClient, projectDoesNotExist(projectDoesNotExistCommand))