From 4db0ec48c3e137c60b715246bb0880c52204ce6a Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Mon, 25 Jan 2016 14:24:10 +0000 Subject: [PATCH] Case - add control handler check to is_empty() --- "frameworks\\utest/source/case.cpp" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/frameworks\\utest/source/case.cpp" "b/frameworks\\utest/source/case.cpp" index eb377679d3..57395abd4a 100644 --- "a/frameworks\\utest/source/case.cpp" +++ "b/frameworks\\utest/source/case.cpp" @@ -147,5 +147,5 @@ Case::get_description() const { bool Case::is_empty() const { - return !(handler || repeat_count_handler || setup_handler || teardown_handler); + return !(handler || control_handler || repeat_count_handler || setup_handler || teardown_handler); }