From: Hans Fugal Date: Wed, 1 Jul 2015 22:07:31 +0000 (-0700) Subject: (easy) wrong test suite name X-Git-Tag: v0.49.0~15 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=913ddf778079e07b6e95f1e0454f5458e73fb5b2;p=folly.git (easy) wrong test suite name Reviewed By: @yfeldblum Differential Revision: D2209197 --- diff --git a/folly/futures/test/ThenTest.cpp b/folly/futures/test/ThenTest.cpp index 3264dded..d92dd006 100644 --- a/folly/futures/test/ThenTest.cpp +++ b/folly/futures/test/ThenTest.cpp @@ -169,7 +169,7 @@ TEST(Then, constValue) { EXPECT_EQ(future.value(), 23); } -TEST(Future, voidThenShouldPropagateExceptions) { +TEST(Then, voidThenShouldPropagateExceptions) { EXPECT_FALSE(makeFuture(42).then().hasException()); EXPECT_TRUE(makeFuture(std::runtime_error("err")) .then().hasException());