From ee956bc94e2c47e17a6d3c723a94a28437914671 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Mon, 19 May 2014 17:50:58 +0100 Subject: [PATCH] Fixed isHidden regression --- include/internal/catch_test_case_info.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/internal/catch_test_case_info.hpp b/include/internal/catch_test_case_info.hpp index fcaf4fb6..39eb2a39 100644 --- a/include/internal/catch_test_case_info.hpp +++ b/include/internal/catch_test_case_info.hpp @@ -68,6 +68,7 @@ namespace Catch { if( tag == "hide" || tag == "." ) { tags.insert( "hide" ); tags.insert( "." ); + isHidden = true; } else { tags.insert( tag );