Fix SelfTest compilation after _THROWS_ assertion change
That is, changes made in efd79aa0bd
This commit is contained in:
parent
a14bd08b27
commit
d7f754dc49
2 changed files with 9 additions and 9 deletions
|
@ -41,7 +41,7 @@ bool templated_tests(T t) {
|
|||
REQUIRE(a == t);
|
||||
CHECK(a == t);
|
||||
REQUIRE_THROWS(throws_int(true));
|
||||
CHECK_THROWS_AS(throws_int(true), const int&);
|
||||
CHECK_THROWS_AS(throws_int(true), int);
|
||||
REQUIRE_NOTHROW(throws_int(false));
|
||||
REQUIRE_THAT("aaa", Catch::EndsWith("aaa"));
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue