Skip to content

Commit bdbe6bc

Browse files
committed
Uncomment monitor value change test in engine test
1 parent 55effde commit bdbe6bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/engine/engine_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,15 +260,15 @@ TEST(EngineTest, CompileAndExecuteMonitors)
260260
engine.updateMonitors();
261261

262262
// Change the monitor values
263-
/*testing::internal::CaptureStdout();
263+
testing::internal::CaptureStdout();
264264
EXPECT_CALL(iface1, onValueChanged);
265265
m1->changeValue(0);
266266
ASSERT_EQ(testing::internal::GetCapturedStdout(), "change 1!\n");
267267

268268
testing::internal::CaptureStdout();
269269
EXPECT_CALL(iface2, onValueChanged);
270270
m2->changeValue(0);
271-
ASSERT_EQ(testing::internal::GetCapturedStdout(), "change 2!\n");*/
271+
ASSERT_EQ(testing::internal::GetCapturedStdout(), "change 2!\n");
272272

273273
ScratchConfiguration::removeExtension(extension);
274274
}

0 commit comments

Comments
 (0)