Internal change.

PiperOrigin-RevId: 251902567
This commit is contained in:
Googler
2019-06-06 12:29:12 -07:00
committed by Shentubot
parent 720ec3590d
commit 81eafb2c5e
+2 -2
View File
@@ -55,7 +55,7 @@ class PipeTest : public ::testing::TestWithParam<PipeCreator> {
FileDescriptor wfd;
public:
static void SetUpTestCase() {
static void SetUpTestSuite() {
// Tests intentionally generate SIGPIPE.
TEST_PCHECK(signal(SIGPIPE, SIG_IGN) != SIG_ERR);
}
@@ -82,7 +82,7 @@ class PipeTest : public ::testing::TestWithParam<PipeCreator> {
return s1;
}
static void TearDownTestCase() {
static void TearDownTestSuite() {
TEST_PCHECK(signal(SIGPIPE, SIG_DFL) != SIG_ERR);
}