diff options
author | Carl Schwan <carl@carlschwan.eu> | 2021-01-21 19:21:00 +0100 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2021-01-21 19:21:45 +0100 |
commit | ba9c361b6ee18401fcd9a79175f56758a11d7f7d (patch) | |
tree | 854bef2e3239d41f966af2aaf7fac429e77befbb | |
parent | a9987b1bc7f789f3063c06ed23e1f51024341463 (diff) | |
download | libquotient-ba9c361b6ee18401fcd9a79175f56758a11d7f7d.tar.gz libquotient-ba9c361b6ee18401fcd9a79175f56758a11d7f7d.zip |
fix build
-rw-r--r-- | autotests/CMakeLists.txt | 2 | ||||
-rw-r--r-- | autotests/callcandidateseventtest.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/autotests/CMakeLists.txt b/autotests/CMakeLists.txt index abfcb49a..07f1f046 100644 --- a/autotests/CMakeLists.txt +++ b/autotests/CMakeLists.txt @@ -11,4 +11,4 @@ function(QUOTIENT_ADD_TEST) add_test(NAME ${ARG_NAME} COMMAND ${ARG_NAME}) endfunction() -quotient_add_test(callcandidateseventtest.cpp NAME callcandidateseventtest) +quotient_add_test(NAME callcandidateseventtest) diff --git a/autotests/callcandidateseventtest.cpp b/autotests/callcandidateseventtest.cpp index ca908db3..f103e4d3 100644 --- a/autotests/callcandidateseventtest.cpp +++ b/autotests/callcandidateseventtest.cpp @@ -29,7 +29,7 @@ void TestCallCandidatesEvent::fromJson() QVERIFY(document.isObject()); - auto object = documemt.object(); + auto object = document.object(); Quotient::CallCandidatesEvent callCandidatesEvent(object); |