Skip to content

Commit 8ff2a5c

Browse files
committed
Revert "test: add DISABLED_ prefix to commented out test"
This reverts commit 75bf8a9. Ref: #14206 Ref: #14317 PR-URL: #14749 Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]>
1 parent 0bc3124 commit 8ff2a5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/cctest/test_environment.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ TEST_F(EnvironmentTest, AtExitWithArgument) {
8585
EXPECT_EQ(arg, cb_1_arg);
8686
}
8787

88-
TEST_F(EnvironmentTest, DISABLED_MultipleEnvironmentsPerIsolate) {
88+
/*
89+
TEST_F(EnvironmentTest, MultipleEnvironmentsPerIsolate) {
8990
const v8::HandleScope handle_scope(isolate_);
9091
const Argv argv;
9192
Env env1 {handle_scope, isolate_, argv};
@@ -100,6 +101,7 @@ TEST_F(EnvironmentTest, DISABLED_MultipleEnvironmentsPerIsolate) {
100101
RunAtExit(*env2);
101102
EXPECT_TRUE(called_cb_2);
102103
}
104+
*/
103105

104106
static void at_exit_callback1(void* arg) {
105107
called_cb_1 = true;

0 commit comments

Comments
 (0)