Commit 913ddf77 authored by Hans Fugal's avatar Hans Fugal Committed by Sara Golemon

(easy) wrong test suite name

Reviewed By: @yfeldblum

Differential Revision: D2209197
parent 308f7da1
...@@ -169,7 +169,7 @@ TEST(Then, constValue) { ...@@ -169,7 +169,7 @@ TEST(Then, constValue) {
EXPECT_EQ(future.value(), 23); EXPECT_EQ(future.value(), 23);
} }
TEST(Future, voidThenShouldPropagateExceptions) { TEST(Then, voidThenShouldPropagateExceptions) {
EXPECT_FALSE(makeFuture(42).then().hasException()); EXPECT_FALSE(makeFuture(42).then().hasException());
EXPECT_TRUE(makeFuture<int>(std::runtime_error("err")) EXPECT_TRUE(makeFuture<int>(std::runtime_error("err"))
.then().hasException()); .then().hasException());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment