From 8d98e2a4e7bb97a550d8f6ebcf3f1e227d854eb8 Mon Sep 17 00:00:00 2001 From: Pyry Haulos Date: Tue, 24 Mar 2015 12:40:29 -0700 Subject: [PATCH] Fix tcu::TestStatus::isComplete() Change-Id: Ie112bd5781a19edc8b19c2bbcb7ecb767b66e439 --- framework/common/tcuTestCase.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/common/tcuTestCase.hpp b/framework/common/tcuTestCase.hpp index 4543ca7..00996c5 100644 --- a/framework/common/tcuTestCase.hpp +++ b/framework/common/tcuTestCase.hpp @@ -181,7 +181,7 @@ class TestStatus public: TestStatus (qpTestResult code, const std::string& description) : m_code(code), m_description(description) {} - bool isComplete (void) const { return getCode() != QP_TEST_RESULT_LAST; } + bool isComplete (void) const { return m_code != QP_TEST_RESULT_LAST; } qpTestResult getCode (void) const { DE_ASSERT(isComplete()); return m_code; } const std::string& getDescription (void) const { DE_ASSERT(isComplete()); return m_description; } -- 2.7.4