diff options
Diffstat (limited to 'autotests')
-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); |