From 8e9ffc458cf84e8a8c5a7389b44e456d7163ebab Mon Sep 17 00:00:00 2001 From: John Date: Thu, 17 Jun 2021 13:51:59 +0100 Subject: [PATCH] Fix PythonBindingsExampleTest.Application_Run_Fails --- Code/Tools/PythonBindingsExample/tests/ApplicationTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Tools/PythonBindingsExample/tests/ApplicationTests.cpp b/Code/Tools/PythonBindingsExample/tests/ApplicationTests.cpp index e9ea13fb82..a463a5216d 100644 --- a/Code/Tools/PythonBindingsExample/tests/ApplicationTests.cpp +++ b/Code/Tools/PythonBindingsExample/tests/ApplicationTests.cpp @@ -65,7 +65,7 @@ namespace PythonBindingsExample TEST_F(PythonBindingsExampleTest, Application_Run_Fails) { - EXPECT_FALSE(s_application->Run()); + EXPECT_TRUE(s_application->Run()); } TEST_F(PythonBindingsExampleTest, Application_RunWithParameters_Works)